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: DuKe TeAm * License Type: Purchased */ package entity; import java.rmi.RemoteException; import org.orm.*; import org.hibernate.Query; import java.util.List; public class DescrizioneDAO { public static Descrizione loadDescrizioneByORMID(int ID) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return loadDescrizioneByORMID(session, ID); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione getDescrizioneByORMID(int ID) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return getDescrizioneByORMID(session, ID); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione loadDescrizioneByORMID(int ID, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return loadDescrizioneByORMID(session, ID, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione getDescrizioneByORMID(int ID, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return getDescrizioneByORMID(session, ID, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione loadDescrizioneByORMID(PersistentSession session, int ID) throws PersistentException { try { return (Descrizione) session.load(entity.Descrizione.class, new Integer(ID)); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione getDescrizioneByORMID(PersistentSession session, int ID) throws PersistentException { try { return (Descrizione) session.get(entity.Descrizione.class, new Integer(ID)); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione loadDescrizioneByORMID(PersistentSession session, int ID, org.hibernate.LockMode lockMode) throws PersistentException { try { return (Descrizione) session.load(entity.Descrizione.class, new Integer(ID), lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione getDescrizioneByORMID(PersistentSession session, int ID, org.hibernate.LockMode lockMode) throws PersistentException { try { return (Descrizione) session.get(entity.Descrizione.class, new Integer(ID), lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione[] listDescrizioneByQuery(String condition, String orderBy) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return listDescrizioneByQuery(session, condition, orderBy); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione[] listDescrizioneByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return listDescrizioneByQuery(session, condition, orderBy, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione[] listDescrizioneByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException { StringBuffer sb = new StringBuffer("From entity.Descrizione as Descrizione"); if (condition != null) sb.append(" Where ").append(condition); if (orderBy != null) sb.append(" Order By ").append(orderBy); try { Query query = session.createQuery(sb.toString()); List list = query.list(); return (Descrizione[]) list.toArray(new Descrizione[list.size()]); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione[] listDescrizioneByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { StringBuffer sb = new StringBuffer("From entity.Descrizione as Descrizione"); 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("this", lockMode); List list = query.list(); return (Descrizione[]) list.toArray(new Descrizione[list.size()]); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione loadDescrizioneByQuery(String condition, String orderBy) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return loadDescrizioneByQuery(session, condition, orderBy); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione loadDescrizioneByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return loadDescrizioneByQuery(session, condition, orderBy, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione loadDescrizioneByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException { Descrizione[] descriziones = listDescrizioneByQuery(session, condition, orderBy); if (descriziones != null && descriziones.length > 0) return descriziones[0]; else return null; } public static Descrizione loadDescrizioneByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { Descrizione[] descriziones = listDescrizioneByQuery(session, condition, orderBy, lockMode); if (descriziones != null && descriziones.length > 0) return descriziones[0]; else return null; } public static java.util.Iterator iterateDescrizioneByQuery(String condition, String orderBy) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return iterateDescrizioneByQuery(session, condition, orderBy); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static java.util.Iterator iterateDescrizioneByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { try { PersistentSession session = entity.ProvaSVNPersistentManager.instance().getSession(); return iterateDescrizioneByQuery(session, condition, orderBy, lockMode); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static java.util.Iterator iterateDescrizioneByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException { StringBuffer sb = new StringBuffer("From entity.Descrizione as Descrizione"); 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 iterateDescrizioneByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException { StringBuffer sb = new StringBuffer("From entity.Descrizione as Descrizione"); 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("this", lockMode); return query.iterate(); } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione createDescrizione() throws RemoteException { return new entity.Descrizione(); } public static boolean save(entity.Descrizione descrizione) throws PersistentException { try { entity.ProvaSVNPersistentManager.instance().saveObject(descrizione); return true; } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static boolean delete(entity.Descrizione descrizione) throws PersistentException { try { entity.ProvaSVNPersistentManager.instance().deleteObject(descrizione); return true; } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static boolean refresh(entity.Descrizione descrizione) throws PersistentException { try { entity.ProvaSVNPersistentManager.instance().getSession().refresh(descrizione); return true; } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static boolean evict(entity.Descrizione descrizione) throws PersistentException { try { entity.ProvaSVNPersistentManager.instance().getSession().evict(descrizione); return true; } catch (Exception e) { e.printStackTrace(); throw new PersistentException(e); } } public static Descrizione loadDescrizioneByCriteria(DescrizioneCriteria descrizioneCriteria) { Descrizione[] descriziones = listDescrizioneByCriteria(descrizioneCriteria); if (descriziones == null || descriziones.length == 0) { return null; } return descriziones[0]; } public static Descrizione[] listDescrizioneByCriteria(DescrizioneCriteria descrizioneCriteria) { return descrizioneCriteria.listDescrizione(); } }