org.domdrides.ibatis.repository.IbatisRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domdrides-ibatis Show documentation
Show all versions of domdrides-ibatis Show documentation
Domain-Driven Design iBATIS Implementation
/*
* Copyright (c) 2008, Carman Consulting, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.domdrides.ibatis.repository;
import org.domdrides.entity.Entity;
import org.domdrides.repository.Repository;
import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport;
import org.springframework.transaction.annotation.Transactional;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;
/**
* An iBATIS-based repository implementation
*
* @since 1.0
*/
public class IbatisRepository, IdType extends Serializable> extends
SqlMapClientDaoSupport implements Repository
{
//**********************************************************************************************************************
// Fields
//**********************************************************************************************************************
private String addId;
private String getAllId;
private String getByIdId;
private String removeId;
private String updateId;
private String sizeId;
//**********************************************************************************************************************
// Constructors
//**********************************************************************************************************************
public IbatisRepository( Class entityClass )
{
final String simpleName = entityClass.getSimpleName();
this.addId = simpleName + ".add";
this.removeId = simpleName + ".remove";
this.updateId = simpleName + ".update";
this.getByIdId = simpleName + ".getById";
this.getAllId = simpleName + ".getAll";
this.sizeId = simpleName + ".size";
}
//**********************************************************************************************************************
// Repository Implementation
//**********************************************************************************************************************
@Transactional()
public EntityType add( EntityType entity )
{
getSqlMapClientTemplate().insert(addId, entity);
return entity;
}
@Transactional( readOnly = true )
public boolean contains( EntityType entity )
{
return getById(entity.getId()) != null;
}
@Transactional( readOnly = true )
@SuppressWarnings( "unchecked" )
public Set getAll()
{
return new HashSet(getSqlMapClientTemplate().queryForList(getAllId));
}
@Transactional( readOnly = true )
@SuppressWarnings( "unchecked" )
public EntityType getById( IdType id )
{
return ( EntityType ) getSqlMapClientTemplate().queryForObject(getByIdId, id);
}
@Transactional
public void remove( EntityType entity )
{
getSqlMapClientTemplate().delete(removeId, entity.getId());
}
@Transactional
public EntityType update( EntityType entity )
{
getSqlMapClientTemplate().update(updateId, entity);
return entity;
}
@Transactional(readOnly = true)
public int size()
{
return ((Number)getSqlMapClientTemplate().queryForObject(sizeId)).intValue();
}
//**********************************************************************************************************************
// Getter/Setter Methods
//**********************************************************************************************************************
public String getSizeId()
{
return sizeId;
}
public void setSizeId(String sizeId)
{
this.sizeId = sizeId;
}
public String getAddId()
{
return addId;
}
public void setAddId( String addId )
{
this.addId = addId;
}
public String getGetAllId()
{
return getAllId;
}
public void setGetAllId( String getAllId )
{
this.getAllId = getAllId;
}
public String getGetByIdId()
{
return getByIdId;
}
public void setGetByIdId( String getByIdId )
{
this.getByIdId = getByIdId;
}
public String getRemoveId()
{
return removeId;
}
public void setRemoveId( String removeId )
{
this.removeId = removeId;
}
public String getUpdateId()
{
return updateId;
}
public void setUpdateId( String updateId )
{
this.updateId = updateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy