Package org.sonatype.security.authorization

Examples of org.sonatype.security.authorization.NoSuchAuthorizationManagerException


  public AuthorizationManager getAuthorizationManager(String source)
      throws NoSuchAuthorizationManagerException
  {
    if (!this.authorizationManagers.containsKey(source)) {
      throw new NoSuchAuthorizationManagerException("AuthorizationManager with source: '" + source
          + "' could not be found.");
    }

    return this.authorizationManagers.get(source);
  }
View Full Code Here

TOP

Related Classes of org.sonatype.security.authorization.NoSuchAuthorizationManagerException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.