Class PdcAxisValueRepository
- java.lang.Object
-
- org.silverpeas.core.persistence.datasource.repository.jpa.AbstractJpaEntityRepository<E>
-
- org.silverpeas.core.persistence.datasource.repository.jpa.BasicJpaEntityRepository<PdcAxisValue>
-
- org.silverpeas.core.pdc.pdc.service.PdcAxisValueRepository
-
- All Implemented Interfaces:
EntityRepository<PdcAxisValue>
,WithSaveAndFlush<PdcAxisValue>
@Repository @Singleton public class PdcAxisValueRepository extends BasicJpaEntityRepository<PdcAxisValue>
DAO that handles the persistence of PdcAxisValue beans.
-
-
Constructor Summary
Constructors Constructor Description PdcAxisValueRepository()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PdcAxisValue>
findByAxisId(Long axisId)
Finds all the values of the specified PdC's axis.-
Methods inherited from class org.silverpeas.core.persistence.datasource.repository.jpa.BasicJpaEntityRepository
deleteByComponentInstanceId, saveAndFlush
-
Methods inherited from class org.silverpeas.core.persistence.datasource.repository.jpa.AbstractJpaEntityRepository
contains, countByCriteria, countFromJpqlString, delete, deleteById, deleteFromJpqlQuery, deleteFromNamedQuery, findByCriteria, findByNamedQuery, findFirstByNamedQuery, flush, getAll, getById, getById, getEntityClass, getEntityManager, getFromJpqlString, getFromJpqlString, getFromNamedQuery, getFromNamedQuery, getIdentifierConverter, getMaximumItemsInClause, listFromJpqlString, listFromJpqlString, listFromJpqlString, listFromJpqlString, listFromNamedQuery, listFromNamedQuery, newNamedParameters, noParameter, save, setMaximumItemsInClause, split, streamByNamedQuery, streamByNamedQuery, streamFromJpqlString, streamFromJpqlString, updateFromJpqlQuery, updateFromNamedQuery
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.silverpeas.core.persistence.datasource.repository.EntityRepository
delete, deleteById, getById, save, save
-
-
-
-
Method Detail
-
findByAxisId
public List<PdcAxisValue> findByAxisId(Long axisId)
Finds all the values of the specified PdC's axis.- Parameters:
axisId
- the unique identifier of the axis.- Returns:
- a list of the values of the specified axis.
-
-