View Javadoc
1   package org.kuali.ole.deliver.rest;
2   
3   import javax.xml.bind.annotation.XmlRootElement;
4   
5   /**
6    * Created by pvsubrah on 6/25/15.
7    */
8   
9   @XmlRootElement(name="response")
10  class CircAPIResponse {
11  
12      private String response;
13  
14      public String getResponse() {
15          return response;
16      }
17  
18      public void setResponse(String response) {
19          this.response = response;
20      }
21  }