Exemple #1
0
 private void addRepresentationFromConfig(
     RestMethod restMethod,
     Representation representation,
     RestRepresentation.Type type,
     List<?> status) {
   RestRepresentation restRepresentation = restMethod.addNewRepresentation(type);
   restRepresentation.setMediaType(representation.getMediaType());
   restRepresentation.setElement(representation.getElement());
   if (status != null) {
     restRepresentation.setStatus(status);
   }
   restRepresentation.setId(representation.getId());
   restRepresentation.setDescription(getFirstTitle(representation.getDocList(), null));
 }