5657585960616263646566
@GET @Path("{ppnIdentifier}") public GoobiProcess getProcess(@PathParam("ppnIdentifier") IdentifierPPN ippn) { GoobiProcess process = GoobiProcessDAO.getProcessByPPN(ippn); if (process == null) { throw new NotFoundException("No such process."); }
4950515253545556575859
private static final Logger myLogger = Logger.getLogger(GoobiProcessDAO.class); public static GoobiProcess getProcessByPPN(IdentifierPPN PPN) { Session session; GoobiProcess result = null; session = Helper.getHibernateSession(); try {