/**
* "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;
import org.orm.*;
import org.hibernate.Query;
import java.util.List;
public class LicitacionesDAO {
public static Licitaciones loadLicitacionesByORMID(int codigo_licitacion) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return loadLicitacionesByORMID(session, codigo_licitacion);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones getLicitacionesByORMID(int codigo_licitacion) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return getLicitacionesByORMID(session, codigo_licitacion);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones loadLicitacionesByORMID(int codigo_licitacion, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return loadLicitacionesByORMID(session, codigo_licitacion, lockMode);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones getLicitacionesByORMID(int codigo_licitacion, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return getLicitacionesByORMID(session, codigo_licitacion, lockMode);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones loadLicitacionesByORMID(PersistentSession session, int codigo_licitacion) throws PersistentException {
try {
return (Licitaciones) session.load(orm.Licitaciones.class, new Integer(codigo_licitacion));
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones getLicitacionesByORMID(PersistentSession session, int codigo_licitacion) throws PersistentException {
try {
return (Licitaciones) session.get(orm.Licitaciones.class, new Integer(codigo_licitacion));
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones loadLicitacionesByORMID(PersistentSession session, int codigo_licitacion, org.hibernate.LockMode lockMode) throws PersistentException {
try {
return (Licitaciones) session.load(orm.Licitaciones.class, new Integer(codigo_licitacion), lockMode);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones getLicitacionesByORMID(PersistentSession session, int codigo_licitacion, org.hibernate.LockMode lockMode) throws PersistentException {
try {
return (Licitaciones) session.get(orm.Licitaciones.class, new Integer(codigo_licitacion), lockMode);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones[] listLicitacionesByQuery(String condition, String orderBy) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return listLicitacionesByQuery(session, condition, orderBy);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones[] listLicitacionesByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return listLicitacionesByQuery(session, condition, orderBy, lockMode);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones[] listLicitacionesByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException {
StringBuffer sb = new StringBuffer("From orm.Licitaciones as Licitaciones");
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 (Licitaciones[]) list.toArray(new Licitaciones[list.size()]);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones[] listLicitacionesByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
StringBuffer sb = new StringBuffer("From orm.Licitaciones as Licitaciones");
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 (Licitaciones[]) list.toArray(new Licitaciones[list.size()]);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones loadLicitacionesByQuery(String condition, String orderBy) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return loadLicitacionesByQuery(session, condition, orderBy);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones loadLicitacionesByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return loadLicitacionesByQuery(session, condition, orderBy, lockMode);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones loadLicitacionesByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException {
Licitaciones[] licitacioneses = listLicitacionesByQuery(session, condition, orderBy);
if (licitacioneses != null && licitacioneses.length > 0)
return licitacioneses[0];
else
return null;
}
public static Licitaciones loadLicitacionesByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
Licitaciones[] licitacioneses = listLicitacionesByQuery(session, condition, orderBy, lockMode);
if (licitacioneses != null && licitacioneses.length > 0)
return licitacioneses[0];
else
return null;
}
public static java.util.Iterator iterateLicitacionesByQuery(String condition, String orderBy) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return iterateLicitacionesByQuery(session, condition, orderBy);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static java.util.Iterator iterateLicitacionesByQuery(String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
try {
PersistentSession session = orm.MercadoPublico2PersistentManager.instance().getSession();
return iterateLicitacionesByQuery(session, condition, orderBy, lockMode);
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static java.util.Iterator iterateLicitacionesByQuery(PersistentSession session, String condition, String orderBy) throws PersistentException {
StringBuffer sb = new StringBuffer("From orm.Licitaciones as Licitaciones");
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 iterateLicitacionesByQuery(PersistentSession session, String condition, String orderBy, org.hibernate.LockMode lockMode) throws PersistentException {
StringBuffer sb = new StringBuffer("From orm.Licitaciones as Licitaciones");
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 Licitaciones createLicitaciones() {
return new orm.Licitaciones();
}
public static boolean save(orm.Licitaciones licitaciones) throws PersistentException {
try {
orm.MercadoPublico2PersistentManager.instance().saveObject(licitaciones);
return true;
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static boolean delete(orm.Licitaciones licitaciones) throws PersistentException {
try {
orm.MercadoPublico2PersistentManager.instance().deleteObject(licitaciones);
return true;
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static boolean refresh(orm.Licitaciones licitaciones) throws PersistentException {
try {
orm.MercadoPublico2PersistentManager.instance().getSession().refresh(licitaciones);
return true;
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static boolean evict(orm.Licitaciones licitaciones) throws PersistentException {
try {
orm.MercadoPublico2PersistentManager.instance().getSession().evict(licitaciones);
return true;
}
catch (Exception e) {
e.printStackTrace();
throw new PersistentException(e);
}
}
public static Licitaciones loadLicitacionesByCriteria(LicitacionesCriteria licitacionesCriteria) {
Licitaciones[] licitacioneses = listLicitacionesByCriteria(licitacionesCriteria);
if(licitacioneses == null || licitacioneses.length == 0) {
return null;
}
return licitacioneses[0];
}
public static Licitaciones[] listLicitacionesByCriteria(LicitacionesCriteria licitacionesCriteria) {
return licitacionesCriteria.listLicitaciones();
}
}