BaseService BaseServiceImpl


package com.web.base;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpSession;

import org.apache.poi.ss.usermodel.Cell;
import org.hibernate.Session;

/**
* Generic Manager that talks to GenericDao to CRUD POJOs.
*
*

Extend this interface if you want typesafe (no casting necessary) managers
* for your domain objects.
*
* @author Matt Raible
* @param a type variable
* @param the primary key for that type
*/
public interface BaseService {

/**
* Generic method used to get all objects of a particular type. This
* is the same as lookup up all rows in a table.
* @return List of populated objects
*/
List getAll();

/**
* Generic method to get an object based on class and identifier. An
* ObjectRetrievalFailureException Runtime Exception is thrown if
* nothing is found.
*
* @param id the identifier (primary key) of the object to get
* @return a populated object
* @see org.springframework.orm.ObjectRetrievalFailureException
*/
T get(PK id);

/**
* Checks for existence of an object of type T using the id arg.
* @param id the identifier (primary key) of the object to get
* @return - true if it exists, false if it doesn't
*/
boolean exists(PK id);

/**
* Generic method to save an object - handles both update and insert.
* @param object the object to save
* @return the updated object
*/
T save(T object);

/**
* Generic method to delete an object based on class and id
* @param id the identifier (primary key) of the object to remove
*/
void remove(PK id);

public void removes(PK[] ids);

void remove1(PK id);

public void removes1(PK[] ids);
public List getByHql(String hql,Object[] objs);

public List getAllByHql(String hql,Object[] objs);

public void updateQuery(final String hql,final Map map);

public List getPageData(String hql, Map map, int pageIndex, int pageSize);

public List getPageData(String hql, Map map);

public int getPageSize(String hql, Map map);

public BigDecimal getTotalCount(String hql, Map map);

public String getCellValue(Cell cell);

public void removes2(PK[] ids, Map session);
}





package com.web.base;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpSession;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.ss.usermodel.Cell;

public class BaseServiceImpl implements BaseService {
/**
* Log variable for all child classes. Uses LogFactory.getLog(getClass()) from Commons Logging
*/
protected final Log log = LogFactory.getLog(getClass());

/**
* GenericDao instance, set by constructor of this class
*/
protected BaseDao baseDao;

/**
* Public constructor for creating a new GenericManagerImpl.
* @param genericDao the GenericDao to use for persistence
*/
public BaseServiceImpl(final BaseDao baseDao) {
this.baseDao = baseDao;
}

/**
* {@inheritDoc}
*/
public List getAll() {
return baseDao.getAll();
}

/**
* {@inheritDoc}
*/
public T get(PK id) {
return baseDao.get(id);
}

/**
* {@inheritDoc}
*/
public boolean exists(PK id) {
return baseDao.exists(id);
}

/**
* {@inheritDoc}
*/
public T save(T object) {
return baseDao.save(object);
}

/**
* {@inheritDoc}
*/
public void remove(PK id) {
baseDao.remove1(id);
}

public void removes(PK[] ids){
baseDao.removes1(ids);
}

public void remove1(PK id) {
baseDao.remove(id);
}

public void removes1(PK[] ids){
baseDao.removes(ids);
}

public List getPageData(String hql, Map map, int pageIndex, int pageSize) {
return baseDao.getPageData(hql, map, pageIndex, pageSize);
}

public List getPageData(String hql, Map map) {
return baseDao.getPageData(hql, map);
}

public int getPageSize(String hql, Map map) {
return baseDao.getPageSize(hql,map);
}

public BigDecimal getTotalCount(String hql, Map map){
return baseDao.getTotalCount(hql,map);
}

public List getByHql(String hql, Object[] objs) {
return baseDao.getByHql(hql, objs);
}

public void updateQuery(String hql, Map map) {
baseDao.updateQuery(hql, map);
}

public List getAllByHql(String hql, Object[] objs) {
return baseDao.getAllByHql(hql, objs);
}

public String getCellValue(Cell cell){
if(cell!=null){
if(cell.getCellType()==HSSFCell.CELL_TYPE_NUMERIC)
return String.valueOf(cell.getNumericCellValue());
else return cell.getRichStringCellValue().toString().trim();
}else return null;
}

public void removes2(PK[] ids,Map session) {
baseDao.removes2(ids,session);
}


}

你可能感兴趣的:(BaseService BaseServiceImpl)