📄 baseroleactiondao.java
字号:
package com.wxd.common.popedom.persistence.entity.base;
import org.hibernate.Hibernate;
import org.hibernate.Session;
import com.wxd.common.popedom.persistence.entity.dao.iface.RoleActionDAO;
import org.hibernate.criterion.Order;
/**
* This is an automatically generated DAO class which should not be edited.
*/
public abstract class BaseRoleActionDAO extends com.wxd.common.popedom.persistence.entity.dao._RootDAO {
public BaseRoleActionDAO () {}
public BaseRoleActionDAO (Session session) {
super(session);
}
// query name references
public static RoleActionDAO instance;
/**
* Return a singleton of the DAO
*/
public static RoleActionDAO getInstance () {
if (null == instance) instance = new com.wxd.common.popedom.persistence.entity.dao.RoleActionDAO();
return instance;
}
public Class getReferenceClass () {
return com.wxd.common.popedom.persistence.entity.RoleAction.class;
}
public Order getDefaultOrder () {
return null;
}
/**
* Cast the object as a com.wxd.common.popedom.persistence.entity.RoleAction
*/
public com.wxd.common.popedom.persistence.entity.RoleAction cast (Object object) {
return (com.wxd.common.popedom.persistence.entity.RoleAction) object;
}
public com.wxd.common.popedom.persistence.entity.RoleAction get(com.wxd.common.popedom.persistence.entity.RoleAction key)
{
return (com.wxd.common.popedom.persistence.entity.RoleAction) get(getReferenceClass(), key);
}
public com.wxd.common.popedom.persistence.entity.RoleAction get(com.wxd.common.popedom.persistence.entity.RoleAction key, Session s)
{
return (com.wxd.common.popedom.persistence.entity.RoleAction) get(getReferenceClass(), key, s);
}
public com.wxd.common.popedom.persistence.entity.RoleAction load(com.wxd.common.popedom.persistence.entity.RoleAction key)
{
return (com.wxd.common.popedom.persistence.entity.RoleAction) load(getReferenceClass(), key);
}
public com.wxd.common.popedom.persistence.entity.RoleAction load(com.wxd.common.popedom.persistence.entity.RoleAction key, Session s)
{
return (com.wxd.common.popedom.persistence.entity.RoleAction) load(getReferenceClass(), key, s);
}
public com.wxd.common.popedom.persistence.entity.RoleAction loadInitialize(com.wxd.common.popedom.persistence.entity.RoleAction key, Session s)
{
com.wxd.common.popedom.persistence.entity.RoleAction obj = load(key, s);
if (!Hibernate.isInitialized(obj)) {
Hibernate.initialize(obj);
}
return obj;
}
/* Generic methods */
/**
* Return all objects related to the implementation of this DAO with no filter.
*/
public java.util.List<com.wxd.common.popedom.persistence.entity.RoleAction> findAll () {
return super.findAll();
}
/**
* Return all objects related to the implementation of this DAO with no filter.
*/
public java.util.List<com.wxd.common.popedom.persistence.entity.RoleAction> findAll (Order defaultOrder) {
return super.findAll(defaultOrder);
}
/**
* Return all objects related to the implementation of this DAO with no filter.
* Use the session given.
* @param s the Session
*/
public java.util.List<com.wxd.common.popedom.persistence.entity.RoleAction> findAll (Session s, Order defaultOrder) {
return super.findAll(s, defaultOrder);
}
/**
* Persist the given transient instance, first assigning a generated identifier. (Or using the current value
* of the identifier property if the assigned generator is used.)
* @param roleAction a transient instance of a persistent class
* @return the class identifier
*/
public com.wxd.common.popedom.persistence.entity.RoleAction save(com.wxd.common.popedom.persistence.entity.RoleAction roleAction)
{
return (com.wxd.common.popedom.persistence.entity.RoleAction) super.save(roleAction);
}
/**
* Persist the given transient instance, first assigning a generated identifier. (Or using the current value
* of the identifier property if the assigned generator is used.)
* Use the Session given.
* @param roleAction a transient instance of a persistent class
* @param s the Session
* @return the class identifier
*/
public com.wxd.common.popedom.persistence.entity.RoleAction save(com.wxd.common.popedom.persistence.entity.RoleAction roleAction, Session s)
{
return (com.wxd.common.popedom.persistence.entity.RoleAction) save((Object) roleAction, s);
}
/**
* Either save() or update() the given instance, depending upon the value of its identifier property. By default
* the instance is always saved. This behaviour may be adjusted by specifying an unsaved-value attribute of the
* identifier property mapping.
* @param roleAction a transient instance containing new or updated state
*/
public void saveOrUpdate(com.wxd.common.popedom.persistence.entity.RoleAction roleAction)
{
saveOrUpdate((Object) roleAction);
}
/**
* Either save() or update() the given instance, depending upon the value of its identifier property. By default the
* instance is always saved. This behaviour may be adjusted by specifying an unsaved-value attribute of the identifier
* property mapping.
* Use the Session given.
* @param roleAction a transient instance containing new or updated state.
* @param s the Session.
*/
public void saveOrUpdate(com.wxd.common.popedom.persistence.entity.RoleAction roleAction, Session s)
{
saveOrUpdate((Object) roleAction, s);
}
/**
* Update the persistent state associated with the given identifier. An exception is thrown if there is a persistent
* instance with the same identifier in the current session.
* @param roleAction a transient instance containing updated state
*/
public void update(com.wxd.common.popedom.persistence.entity.RoleAction roleAction)
{
update((Object) roleAction);
}
/**
* Update the persistent state associated with the given identifier. An exception is thrown if there is a persistent
* instance with the same identifier in the current session.
* Use the Session given.
* @param roleAction a transient instance containing updated state
* @param the Session
*/
public void update(com.wxd.common.popedom.persistence.entity.RoleAction roleAction, Session s)
{
update((Object) roleAction, s);
}
/**
* Remove a persistent instance from the datastore. The argument may be an instance associated with the receiving
* Session or a transient instance with an identifier associated with existing persistent state.
* @param roleAction the instance to be removed
*/
public void delete(com.wxd.common.popedom.persistence.entity.RoleAction roleAction)
{
delete((Object) roleAction);
}
/**
* Remove a persistent instance from the datastore. The argument may be an instance associated with the receiving
* Session or a transient instance with an identifier associated with existing persistent state.
* Use the Session given.
* @param roleAction the instance to be removed
* @param s the Session
*/
public void delete(com.wxd.common.popedom.persistence.entity.RoleAction roleAction, Session s)
{
delete((Object) roleAction, s);
}
/**
* Re-read the state of the given instance from the underlying database. It is inadvisable to use this to implement
* long-running sessions that span many business tasks. This method is, however, useful in certain special circumstances.
* For example
* <ul>
* <li>where a database trigger alters the object state upon insert or update</li>
* <li>after executing direct SQL (eg. a mass update) in the same session</li>
* <li>after inserting a Blob or Clob</li>
* </ul>
*/
public void refresh (com.wxd.common.popedom.persistence.entity.RoleAction roleAction, Session s)
{
refresh((Object) roleAction, s);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -