Java tutorial
/** * "Visual Paradigm: DO NOT MODIFY THIS FILE!" * * This is an automatic generated file. It will be regenerated every time * you generate persistence class. * * Modifying its content may cause the program not work, or your work may lost. */ /** * Licensee: * License Type: Evaluation */ package businesslogic.accounting.job; import java.util.List; import org.hibernate.Query; import org.orm.PersistentException; import org.orm.PersistentSession; import orm.OODPersistentManager; public class SpecialtyDAO { public static Specialty loadSpecialtyByORMID(int ID) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return loadSpecialtyByORMID(session, ID); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty getSpecialtyByORMID(int ID) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return getSpecialtyByORMID(session, ID); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty loadSpecialtyByORMID(int ID, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return loadSpecialtyByORMID(session, ID, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty getSpecialtyByORMID(int ID, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return getSpecialtyByORMID(session, ID, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty loadSpecialtyByORMID(PersistentSession session, int ID) throws PersistentException { try { return (Specialty) session.load(businesslogic.accounting.job.Specialty.class, new Integer(ID)); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty getSpecialtyByORMID(PersistentSession session, int ID) throws PersistentException { try { return (Specialty) session.get(businesslogic.accounting.job.Specialty.class, new Integer(ID)); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty loadSpecialtyByORMID(PersistentSession session, int ID, org.hibernate.LockMode lockMode) throws PersistentException { try { return (Specialty) session.load(businesslogic.accounting.job.Specialty.class, new Integer(ID), lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty getSpecialtyByORMID(PersistentSession session, int ID, org.hibernate.LockMode lockMode) throws PersistentException { try { return (Specialty) session.get(businesslogic.accounting.job.Specialty.class, new Integer(ID), lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static List querySpecialty(String condition, String orderBy) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return querySpecialty(session, condition, orderBy); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static List querySpecialty(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return querySpecialty(session, condition, orderBy, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty[] listSpecialtyByQuery(String condition, String orderBy) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return listSpecialtyByQuery(session, condition, orderBy); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty[] listSpecialtyByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return listSpecialtyByQuery(session, condition, orderBy, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static List querySpecialty(PersistentSession session, String condition, String orderBy) throws PersistentException { StringBuffer sb = new StringBuffer("From businesslogic.accounting.job.Specialty as Specialty"); if (condition != null) sb.append(" Where ").append(condition); if (orderBy != null) sb.append(" Order By ").append(orderBy); try { Query query = session.createQuery(sb.toString()); return query.list(); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static List querySpecialty(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { StringBuffer sb = new StringBuffer("From businesslogic.accounting.job.Specialty as Specialty"); if (condition != null) sb.append(" Where ").append(condition); if (orderBy != null) sb.append(" Order By ").append(orderBy); try { Query query = session.createQuery(sb.toString()); query.setLockMode("Specialty", lockMode); return query.list(); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty[] listSpecialtyByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException { try { List list = querySpecialty(session, condition, orderBy); return (Specialty[]) list.toArray(new Specialty[list.size()]); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty[] listSpecialtyByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { try { List list = querySpecialty(session, condition, orderBy, lockMode); return (Specialty[]) list.toArray(new Specialty[list.size()]); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty loadSpecialtyByQuery(String condition, String orderBy) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return loadSpecialtyByQuery(session, condition, orderBy); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty loadSpecialtyByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return loadSpecialtyByQuery(session, condition, orderBy, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty loadSpecialtyByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException { Specialty[] specialtys = listSpecialtyByQuery(session, condition, orderBy); if (specialtys != null && specialtys.length > 0) return specialtys[0]; else return null; } public static Specialty loadSpecialtyByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { Specialty[] specialtys = listSpecialtyByQuery(session, condition, orderBy, lockMode); if (specialtys != null && specialtys.length > 0) return specialtys[0]; else return null; } public static java.util.Iterator iterateSpecialtyByQuery(String condition, String orderBy) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return iterateSpecialtyByQuery(session, condition, orderBy); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static java.util.Iterator iterateSpecialtyByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = OODPersistentManager.instance().getSession(); return iterateSpecialtyByQuery(session, condition, orderBy, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static java.util.Iterator iterateSpecialtyByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException { StringBuffer sb = new StringBuffer("From businesslogic.accounting.job.Specialty as Specialty"); if (condition != null) sb.append(" Where ").append(condition); if (orderBy != null) sb.append(" Order By ").append(orderBy); try { Query query = session.createQuery(sb.toString()); return query.iterate(); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static java.util.Iterator iterateSpecialtyByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { StringBuffer sb = new StringBuffer("From businesslogic.accounting.job.Specialty as Specialty"); if (condition != null) sb.append(" Where ").append(condition); if (orderBy != null) sb.append(" Order By ").append(orderBy); try { Query query = session.createQuery(sb.toString()); query.setLockMode("Specialty", lockMode); return query.iterate(); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty createSpecialty() { return new businesslogic.accounting.job.Specialty(); } public static boolean save(businesslogic.accounting.job.Specialty specialty) throws PersistentException { try { OODPersistentManager.instance().saveObject(specialty); return true; } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static boolean delete(businesslogic.accounting.job.Specialty specialty) throws PersistentException { try { OODPersistentManager.instance().deleteObject(specialty); return true; } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static boolean refresh(businesslogic.accounting.job.Specialty specialty) throws PersistentException { try { OODPersistentManager.instance().getSession().refresh(specialty); return true; } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static boolean evict(businesslogic.accounting.job.Specialty specialty) throws PersistentException { try { OODPersistentManager.instance().getSession().evict(specialty); return true; } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Specialty loadSpecialtyByCriteria(SpecialtyCriteria specialtyCriteria) { Specialty[] specialtys = listSpecialtyByCriteria(specialtyCriteria); if (specialtys == null || specialtys.length == 0) { return null; } return specialtys[0]; } public static Specialty[] listSpecialtyByCriteria(SpecialtyCriteria specialtyCriteria) { return specialtyCriteria.listSpecialty(); } }