Examples of PlexusRoleResource


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

  @Test
  public void testPlexusRoleListPlexusResource() {
    PlexusRoleListResourceResponse resourceResponse = new PlexusRoleListResourceResponse();

    PlexusRoleResource role1 = new PlexusRoleResource();
    role1.setName("role1");
    role1.setSource("source1");
    role1.setRoleId("roleId1");
    resourceResponse.addData(role1);

    PlexusRoleResource role2 = new PlexusRoleResource();
    role2.setName("role2");
    role2.setSource("source2");
    role2.setRoleId("roleId2");
    resourceResponse.addData(role2);

    this.marshalUnmarchalThenCompare(resourceResponse);
    this.validateXmlHasNoPackageNames(resourceResponse);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.