//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @FIND_BY_ID-presentation_place@
@GET
@Path("{id}")
@Produces ({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public PresentationPlace findById (@PathParam ("id") java.lang.Long id) {
PresentationPlace _presentationPlace = new PresentationPlace ();
_presentationPlace.setId(id);
_presentationPlace = presentationPlaceExtDao.getFirstPresentationPlace(_presentationPlace);
if (_presentationPlace!=null) return _presentationPlace.flat();
return new PresentationPlace ();
}