Package org.sonatype.nexus.rest.model

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


  @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);
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.rest.model.FeedListResource

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.