/* Name: - PartyTypeRepository Description: - Requires: - Provides: - Part of: ProcessPuzzle Framework, Domain and Business Model Ready Architecture. Provides content, workflow and social networking functionality. http://www.processpuzzle.com ProcessPuzzle - Content and Workflow Management Integration Business Platform Author(s): - Zsolt Zsuffa Copyright: (C) 2011 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.processpuzzle.party.partytype.domain; import com.processpuzzle.application.configuration.domain.ProcessPuzzleContext; import com.processpuzzle.commons.persistence.PersistenceStrategy; import com.processpuzzle.commons.persistence.Repository; import com.processpuzzle.commons.persistence.RepositoryResultSet; import com.processpuzzle.persistence.domain.DefaultUnitOfWork; import com.processpuzzle.persistence.domain.GenericRepository; import com.processpuzzle.persistence.query.domain.ComparisonOperators; import com.processpuzzle.persistence.query.domain.DefaultQuery; import com.processpuzzle.persistence.query.domain.TextAttributeCondition; public class PartyTypeRepository extends GenericRepository<PartyType> implements Repository<PartyType>{ public PartyTypeRepository( PersistenceStrategy strategy, ProcessPuzzleContext applicationContext ) { super(strategy, applicationContext); } public Integer add( PartyType partyType ) { DefaultUnitOfWork work = new DefaultUnitOfWork( true ); Integer id = addPartyType( work, partyType ); work.finish(); return id; } public Integer addPartyType( DefaultUnitOfWork work, PartyType partyType ) { return add( work, PartyType.class, partyType ); } public void delete( PartyType partyType ) { DefaultUnitOfWork work = new DefaultUnitOfWork( true ); delete( work, partyType ); work.finish(); } public PartyType findByName ( String name ) { DefaultUnitOfWork work = new DefaultUnitOfWork( true ); PartyType partyType = findByName( work, name ); work.finish(); return partyType; } public PartyType findByName ( DefaultUnitOfWork work, String name ) { DefaultQuery query = new DefaultQuery( PartyType.class ); query.getQueryCondition().addAttributeCondition( new TextAttributeCondition("name", name, ComparisonOperators.EQUAL_TO )); RepositoryResultSet<PartyType> results = super.findByQuery( work, query ); if( results.size() == 1 ) return results.getEntityAt(0); else return null; } public PartyType findByPartyClassName( String partyClassName ) { DefaultUnitOfWork work = new DefaultUnitOfWork( true ); DefaultQuery query = new DefaultQuery( PartyType.class ); TextAttributeCondition classNameCondition = new TextAttributeCondition( "partyClassName", partyClassName, ComparisonOperators.EQUAL_TO ); query.getQueryCondition().addAttributeCondition( classNameCondition ); RepositoryResultSet<PartyType> resultSet = findByQuery( work, query ); work.finish(); if( resultSet != null && resultSet.size() == 1 ) return resultSet.getEntityAt( 0 ); else return null; } }