?? historymessagecontentfacade.java
字號:
package com.sinosoft.message.ejb;
import java.util.List;
import java.util.Set;
import java.util.logging.Level;
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
/**
* Facade for entity Historymessagecontent.
*
* @see com.sinosoft.message.ejb.Historymessagecontent
* @author MyEclipse Persistence Tools
*/
@Stateless
public class HistorymessagecontentFacade implements
HistorymessagecontentFacadeLocal, HistorymessagecontentFacadeRemote {
// property constants
public static final String MESSAGECONTENT = "messagecontent";
public static final String MESSAGETYPE = "messagetype";
public static final String URL = "url";
public static final String LEVEL = "level";
@PersistenceContext
private EntityManager entityManager;
/**
* Perform an initial save of a previously unsaved Historymessagecontent
* entity. All subsequent persist actions of this entity should use the
* #update() method.
*
* @param entity
* Historymessagecontent entity to persist
* @throws RuntimeException
* when the operation fails
*/
public void save(Historymessagecontent entity) {
LogUtil.log("saving Historymessagecontent instance", Level.INFO, null);
try {
entityManager.persist(entity);
LogUtil.log("save successful", Level.INFO, null);
} catch (RuntimeException re) {
LogUtil.log("save failed", Level.SEVERE, re);
throw re;
}
}
/**
* Delete a persistent Historymessagecontent entity.
*
* @param entity
* Historymessagecontent entity to delete
* @throws RuntimeException
* when the operation fails
*/
public void delete(Historymessagecontent entity) {
LogUtil
.log("deleting Historymessagecontent instance", Level.INFO,
null);
try {
entity = entityManager.getReference(Historymessagecontent.class,
entity.getId());
entityManager.remove(entity);
LogUtil.log("delete successful", Level.INFO, null);
} catch (RuntimeException re) {
LogUtil.log("delete failed", Level.SEVERE, re);
throw re;
}
}
/**
* Persist a previously saved Historymessagecontent entity and return it or
* a copy of it to the sender. A copy of the Historymessagecontent entity
* parameter is returned when the JPA persistence mechanism has not
* previously been tracking the updated entity.
*
* @param entity
* Historymessagecontent entity to update
* @return Historymessagecontent the persisted Historymessagecontent entity
* instance, may not be the same
* @throws RuntimeException
* if the operation fails
*/
public Historymessagecontent update(Historymessagecontent entity) {
LogUtil
.log("updating Historymessagecontent instance", Level.INFO,
null);
try {
Historymessagecontent result = entityManager.merge(entity);
LogUtil.log("update successful", Level.INFO, null);
return result;
} catch (RuntimeException re) {
LogUtil.log("update failed", Level.SEVERE, re);
throw re;
}
}
public Historymessagecontent findById(String id) {
LogUtil.log("finding Historymessagecontent instance with id: " + id,
Level.INFO, null);
try {
Historymessagecontent instance = entityManager.find(
Historymessagecontent.class, id);
return instance;
} catch (RuntimeException re) {
LogUtil.log("find failed", Level.SEVERE, re);
throw re;
}
}
/**
* Find all Historymessagecontent entities with a specific property value.
*
* @param propertyName
* the name of the Historymessagecontent property to query
* @param value
* the property value to match
* @param rowStartIdxAndCount
* Optional int varargs. rowStartIdxAndCount[0] specifies the the
* row index in the query result-set to begin collecting the
* results. rowStartIdxAndCount[1] specifies the the maximum
* number of results to return.
* @return List<Historymessagecontent> found by query
*/
@SuppressWarnings("unchecked")
public List<Historymessagecontent> findByProperty(String propertyName,
final Object value, final int... rowStartIdxAndCount) {
LogUtil.log("finding Historymessagecontent instance with property: "
+ propertyName + ", value: " + value, Level.INFO, null);
try {
final String queryString = "select model from Historymessagecontent model where model."
+ propertyName + "= :propertyValue";
Query query = entityManager.createQuery(queryString);
query.setParameter("propertyValue", value);
if (rowStartIdxAndCount != null && rowStartIdxAndCount.length > 0) {
int rowStartIdx = Math.max(0, rowStartIdxAndCount[0]);
if (rowStartIdx > 0) {
query.setFirstResult(rowStartIdx);
}
if (rowStartIdxAndCount.length > 1) {
int rowCount = Math.max(0, rowStartIdxAndCount[1]);
if (rowCount > 0) {
query.setMaxResults(rowCount);
}
}
}
return query.getResultList();
} catch (RuntimeException re) {
LogUtil.log("find by property name failed", Level.SEVERE, re);
throw re;
}
}
public List<Historymessagecontent> findByMessagecontent(
Object messagecontent, int... rowStartIdxAndCount) {
return findByProperty(MESSAGECONTENT, messagecontent,
rowStartIdxAndCount);
}
public List<Historymessagecontent> findByMessagetype(Object messagetype,
int... rowStartIdxAndCount) {
return findByProperty(MESSAGETYPE, messagetype, rowStartIdxAndCount);
}
public List<Historymessagecontent> findByUrl(Object url,
int... rowStartIdxAndCount) {
return findByProperty(URL, url, rowStartIdxAndCount);
}
public List<Historymessagecontent> findByLevel(Object level,
int... rowStartIdxAndCount) {
return findByProperty(LEVEL, level, rowStartIdxAndCount);
}
/**
* Find all Historymessagecontent entities.
*
* @param rowStartIdxAndCount
* Optional int varargs. rowStartIdxAndCount[0] specifies the the
* row index in the query result-set to begin collecting the
* results. rowStartIdxAndCount[1] specifies the the maximum
* count of results to return.
* @return List<Historymessagecontent> all Historymessagecontent entities
*/
@SuppressWarnings("unchecked")
public List<Historymessagecontent> findAll(final int... rowStartIdxAndCount) {
LogUtil.log("finding all Historymessagecontent instances", Level.INFO,
null);
try {
final String queryString = "select model from Historymessagecontent model";
Query query = entityManager.createQuery(queryString);
if (rowStartIdxAndCount != null && rowStartIdxAndCount.length > 0) {
int rowStartIdx = Math.max(0, rowStartIdxAndCount[0]);
if (rowStartIdx > 0) {
query.setFirstResult(rowStartIdx);
}
if (rowStartIdxAndCount.length > 1) {
int rowCount = Math.max(0, rowStartIdxAndCount[1]);
if (rowCount > 0) {
query.setMaxResults(rowCount);
}
}
}
return query.getResultList();
} catch (RuntimeException re) {
LogUtil.log("find all failed", Level.SEVERE, re);
throw re;
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -