addRepresentationFromConfig(restMethod, representation, type, status);
}
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));
}