Package com.sonatype.nexus.ssl.plugin.spi

Examples of com.sonatype.nexus.ssl.plugin.spi.CapabilityManager


    }
    return get(type, id);
  }

  private CapabilityManager getManager(final String type) {
    final CapabilityManager manager = managers.get(type);
    if (manager == null) {
      throw new NotFoundException("Capability manager of type '" + type + "' are not supported");
    }
    return manager;
  }
View Full Code Here

TOP

Related Classes of com.sonatype.nexus.ssl.plugin.spi.CapabilityManager

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.