コード例 #1
0
  /**
   * @param name
   * @return
   */
  public static ApplicationAuthenticator getAppAuthenticatorByName(String name) {

    for (ApplicationAuthenticator authenticator : FrameworkServiceComponent.getAuthenticators()) {

      if (name.equals(authenticator.getName())) {
        return authenticator;
      }
    }

    return null;
  }