org.slf4j.helpers.Util.getSecurityManager()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(9.5k)|赞(0)|评价(0)|浏览(88)

本文整理了Java中org.slf4j.helpers.Util.getSecurityManager()方法的一些代码示例,展示了Util.getSecurityManager()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.getSecurityManager()方法的具体详情如下:
包路径:org.slf4j.helpers.Util
类名称:Util
方法名:getSecurityManager

Util.getSecurityManager介绍

暂无

代码示例

代码示例来源:origin: redisson/redisson

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: wildfly/wildfly

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: org.apache.activemq/activemq-all

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: com.github.oshi/oshi-core-shaded

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: uk.co.nichesolutions/slf4j-api

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: org.apache.directory.api/api-ldap-client-all

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: Nextdoor/bender

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

代码示例来源:origin: ops4j/org.ops4j.pax.logging

/**
 * Returns the name of the class which called the invoking method.
 *
 * @return the name of the class which called the invoking method.
 */
public static Class<?> getCallingClass() {
  ClassContextSecurityManager securityManager = getSecurityManager();
  if (securityManager == null)
    return null;
  Class<?>[] trace = securityManager.getClassContext();
  String thisClassName = Util.class.getName();
  // Advance until Util is found
  int i;
  for (i = 0; i < trace.length; i++) {
    if (thisClassName.equals(trace[i].getName()))
      break;
  }
  // trace[i] = Util; trace[i+1] = caller; trace[i+2] = caller's caller
  if (i >= trace.length || i + 2 >= trace.length) {
    throw new IllegalStateException("Failed to find org.slf4j.helpers.Util or its caller in the stack; " + "this should not happen");
  }
  return trace[i + 2];
}

相关文章