Examples of XStreamRepresentation


Examples of org.sonatype.plexus.rest.representation.XStreamRepresentation

  public void testNoScheduledService()
      throws Exception
  {
    String jsonString =
        "{\"data\":{\"id\":null,\"name\":\"test\",\"typeId\":\"Synchronize Repositories\",\"schedule\":\"none\"}}}";
    XStreamRepresentation representation =
        new XStreamRepresentation(xstream, jsonString, MediaType.APPLICATION_JSON);

    ScheduledServiceResourceResponse response =
        (ScheduledServiceResourceResponse) representation.getPayload(new ScheduledServiceResourceResponse());

    assert response.getData().getId() == null;
    assert response.getData().getName().equals("test");
    assert response.getData().getTypeId().equals("Synchronize Repositories");
    assert response.getData().getSchedule().equals("none");
View Full Code Here

Examples of org.sonatype.plexus.rest.representation.XStreamRepresentation

  public void testOnceScheduledService()
      throws Exception
  {
    String jsonString =
        "{\"data\":{\"id\":null,\"name\":\"test\",\"typeId\":\"Synchronize Repositories\",\"schedule\":\"once\",\"startDate\":\"1210651200000\",\"startTime\":\"12:30\"}}}";
    XStreamRepresentation representation =
        new XStreamRepresentation(xstream, jsonString, MediaType.APPLICATION_JSON);

    ScheduledServiceResourceResponse response =
        (ScheduledServiceResourceResponse) representation.getPayload(new ScheduledServiceResourceResponse());

    assert response.getData().getId() == null;
    assert response.getData().getName().equals("test");
    assert response.getData().getTypeId().equals("Synchronize Repositories");
    assert response.getData().getSchedule().equals("once");
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.