/**
* "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 orm.impl;
import org.orm.*;
import org.hibernate.Query;
import java.util.List;
import orm.*;
public class PuntajeDAOImpl implements orm.dao.PuntajeDAO {
private static final org.apache.log4j.Logger _logger = org.apache.log4j.Logger.getLogger(PuntajeDAOImpl.class);
public Puntaje loadPuntajeByORMID(int puntaje_id) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return loadPuntajeByORMID(session, puntaje_id);
}
catch (Exception e) {
_logger.error("loadPuntajeByORMID(int puntaje_id)", e);
throw new PersistentException(e);
}
}
public Puntaje getPuntajeByORMID(int puntaje_id) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return getPuntajeByORMID(session, puntaje_id);
}
catch (Exception e) {
_logger.error("getPuntajeByORMID(int puntaje_id)", e);
throw new PersistentException(e);
}
}
public Puntaje loadPuntajeByORMID(int puntaje_id, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return loadPuntajeByORMID(session, puntaje_id, lockMode);
}
catch (Exception e) {
_logger.error("loadPuntajeByORMID(int puntaje_id, org.hibernate.LockMode lockMode)", e);
throw new PersistentException(e);
}
}
public Puntaje getPuntajeByORMID(int puntaje_id, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return getPuntajeByORMID(session, puntaje_id, lockMode);
}
catch (Exception e) {
_logger.error("getPuntajeByORMID(int puntaje_id, org.hibernate.LockMode lockMode)", e);
throw new PersistentException(e);
}
}
public Puntaje loadPuntajeByORMID(PersistentSession session, int puntaje_id) throws PersistentException {
try {
return (Puntaje) session.load(orm.Puntaje.class, new Integer(puntaje_id));
}
catch (Exception e) {
_logger.error("loadPuntajeByORMID(PersistentSession session, int puntaje_id)", e);
throw new PersistentException(e);
}
}
public Puntaje getPuntajeByORMID(PersistentSession session, int puntaje_id) throws PersistentException {
try {
return (Puntaje) session.get(orm.Puntaje.class, new Integer(puntaje_id));
}
catch (Exception e) {
_logger.error("getPuntajeByORMID(PersistentSession session, int puntaje_id)", e);
throw new PersistentException(e);
}
}
public Puntaje loadPuntajeByORMID(PersistentSession session, int puntaje_id, org.hibernate.LockMode lockMode) throws PersistentException {
try {
return (Puntaje) session.load(orm.Puntaje.class, new Integer(puntaje_id), lockMode);
}
catch (Exception e) {
_logger.error("loadPuntajeByORMID(PersistentSession session, int puntaje_id, org.hibernate.LockMode lockMode)", e);
throw new PersistentException(e);
}
}
public Puntaje getPuntajeByORMID(PersistentSession session, int puntaje_id, org.hibernate.LockMode lockMode) throws PersistentException {
try {
return (Puntaje) session.get(orm.Puntaje.class, new Integer(puntaje_id), lockMode);
}
catch (Exception e) {
_logger.error("getPuntajeByORMID(PersistentSession session, int puntaje_id, org.hibernate.LockMode lockMode)", e);
throw new PersistentException(e);
}
}
public Puntaje[] listPuntajeByQuery(String condition, String orderBy) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return listPuntajeByQuery(session, condition, orderBy);
}
catch (Exception e) {
_logger.error("listPuntajeByQuery(String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public Puntaje[] listPuntajeByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return listPuntajeByQuery(session, condition, orderBy, lockMode);
}
catch (Exception e) {
_logger.error("listPuntajeByQuery(String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public Puntaje[] listPuntajeByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException {
StringBuffer sb = new StringBuffer("From orm.Puntaje as Puntaje");
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 (Puntaje[]) list.toArray(new Puntaje[list.size()]);
}
catch (Exception e) {
_logger.error("listPuntajeByQuery(PersistentSession session, String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public Puntaje[] listPuntajeByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
StringBuffer sb = new StringBuffer("From orm.Puntaje as Puntaje");
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 (Puntaje[]) list.toArray(new Puntaje[list.size()]);
}
catch (Exception e) {
_logger.error("listPuntajeByQuery(PersistentSession session, String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public Puntaje loadPuntajeByQuery(String condition, String orderBy) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return loadPuntajeByQuery(session, condition, orderBy);
}
catch (Exception e) {
_logger.error("loadPuntajeByQuery(String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public Puntaje loadPuntajeByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return loadPuntajeByQuery(session, condition, orderBy, lockMode);
}
catch (Exception e) {
_logger.error("loadPuntajeByQuery(String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public Puntaje loadPuntajeByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException {
Puntaje[] puntajes = listPuntajeByQuery(session, condition, orderBy);
if (puntajes != null && puntajes.length > 0)
return puntajes[0];
else
return null;
}
public Puntaje loadPuntajeByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
Puntaje[] puntajes = listPuntajeByQuery(session, condition, orderBy, lockMode);
if (puntajes != null && puntajes.length > 0)
return puntajes[0];
else
return null;
}
public static java.util.Iterator iteratePuntajeByQuery(String condition, String orderBy) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return iteratePuntajeByQuery(session, condition, orderBy);
}
catch (Exception e) {
_logger.error("iteratePuntajeByQuery(String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public static java.util.Iterator iteratePuntajeByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.VP2PersistentManager.instance().getSession();
return iteratePuntajeByQuery(session, condition, orderBy, lockMode);
}
catch (Exception e) {
_logger.error("iteratePuntajeByQuery(String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public static java.util.Iterator iteratePuntajeByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException {
StringBuffer sb = new StringBuffer("From orm.Puntaje as Puntaje");
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) {
_logger.error("iteratePuntajeByQuery(PersistentSession session, String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public static java.util.Iterator iteratePuntajeByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
StringBuffer sb = new StringBuffer("From orm.Puntaje as Puntaje");
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) {
_logger.error("iteratePuntajeByQuery(PersistentSession session, String condition, String orderBy)", e);
throw new PersistentException(e);
}
}
public Puntaje createPuntaje() {
return new orm.Puntaje();
}
public boolean save(orm.Puntaje puntaje) throws PersistentException {
try {
orm.VP2PersistentManager.instance().saveObject(puntaje);
return true;
}
catch (Exception e) {
_logger.error("save(orm.Puntaje puntaje)", e);
throw new PersistentException(e);
}
}
public boolean delete(orm.Puntaje puntaje) throws PersistentException {
try {
orm.VP2PersistentManager.instance().deleteObject(puntaje);
return true;
}
catch (Exception e) {
_logger.error("delete(orm.Puntaje puntaje)", e);
throw new PersistentException(e);
}
}
public boolean deleteAndDissociate(orm.Puntaje puntaje)throws PersistentException {
try {
if(puntaje.getPuntaje_establecimientorbd() != null) {
puntaje.getPuntaje_establecimientorbd().puntaje1.remove(puntaje);
}
if(puntaje.getPuntaje_nivel() != null) {
puntaje.getPuntaje_nivel().puntaje.remove(puntaje);
}
if(puntaje.getPuntaje_subsector() != null) {
puntaje.getPuntaje_subsector().puntaje.remove(puntaje);
}
return delete(puntaje);
}
catch(Exception e) {
_logger.error("deleteAndDissociate()", e);
throw new PersistentException(e);
}
}
public boolean deleteAndDissociate(orm.Puntaje puntaje, org.orm.PersistentSession session)throws PersistentException {
try {
if(puntaje.getPuntaje_establecimientorbd() != null) {
puntaje.getPuntaje_establecimientorbd().puntaje1.remove(puntaje);
}
if(puntaje.getPuntaje_nivel() != null) {
puntaje.getPuntaje_nivel().puntaje.remove(puntaje);
}
if(puntaje.getPuntaje_subsector() != null) {
puntaje.getPuntaje_subsector().puntaje.remove(puntaje);
}
try {
session.delete(puntaje);
return true;
} catch (Exception e) {
return false;
}
}
catch(Exception e) {
_logger.error("deleteAndDissociate()", e);
throw new PersistentException(e);
}
}
public boolean refresh(orm.Puntaje puntaje) throws PersistentException {
try {
orm.VP2PersistentManager.instance().getSession().refresh(puntaje);
return true;
}
catch (Exception e) {
_logger.error("refresh(orm.Puntaje puntaje)", e);
throw new PersistentException(e);
}
}
public boolean evict(orm.Puntaje puntaje) throws PersistentException {
try {
orm.VP2PersistentManager.instance().getSession().evict(puntaje);
return true;
}
catch (Exception e) {
_logger.error("evict(orm.Puntaje puntaje)", e);
throw new PersistentException(e);
}
}
public Puntaje loadPuntajeByCriteria(PuntajeCriteria puntajeCriteria) {
Puntaje[] puntajes = listPuntajeByCriteria(puntajeCriteria);
if(puntajes == null || puntajes.length == 0) {
return null;
}
return puntajes[0];
}
public Puntaje[] listPuntajeByCriteria(PuntajeCriteria puntajeCriteria) {
return puntajeCriteria.listPuntaje();
}
}