Ejemplo n.º 1
0
 /**
  * Describe the GET method
  *
  * @param info the WADL documentation info
  */
 public void describeGet(MethodInfo info) {
   info.setDocumentation("Method to get the admin view.");
   this.addStandardGetRequestInfo(info);
   ResponseInfo responseInfo = new ResponseInfo();
   RepresentationInfo representationInfo = new RepresentationInfo();
   representationInfo.setReference("html_freemarker");
   responseInfo.getRepresentations().add(representationInfo);
   info.getResponses().add(responseInfo);
 }