Package org.sonatype.security.rest.model

Examples of org.sonatype.security.rest.model.PlexusComponentListResource


    if (userManagers != null) {
      for (BeanEntry<Named, UserManager> entry : userManagers) {
        String hint = entry.getKey().value();
        String description = entry.getDescription();

        PlexusComponentListResource resource = new PlexusComponentListResource();
        resource.setRoleHint(hint);
        resource.setDescription((StringUtils.isNotEmpty(description)) ? description : hint);

        // add it to the collection
        result.addData(resource);
      }
    }
View Full Code Here

TOP

Related Classes of org.sonatype.security.rest.model.PlexusComponentListResource

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.