Examples of FeedListResourceResponse


Examples of org.sonatype.nexus.rest.model.FeedListResourceResponse

    this.validateXmlHasNoPackageNames(resourceResponse);
  }

  @Test
  public void testFeedListResourceResponse() {
    FeedListResourceResponse resourceResponse = new FeedListResourceResponse();

    FeedListResource item1 = new FeedListResource();
    item1.setName("feed1");
    item1.setResourceURI("resourceURI1");

    FeedListResource item2 = new FeedListResource();
    item2.setName("feed2");
    item2.setResourceURI("resourceURI2");

    resourceResponse.addData(item1);
    resourceResponse.addData(item2);

    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.