Class JPARelationshipTypeDAO
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.dao.AbstractDAO<RelationshipType>
-
- org.apache.syncope.core.persistence.jpa.dao.JPARelationshipTypeDAO
-
- All Implemented Interfaces:
DAO<RelationshipType>
,RelationshipTypeDAO
public class JPARelationshipTypeDAO extends AbstractDAO<RelationshipType> implements RelationshipTypeDAO
-
-
Field Summary
-
Fields inherited from class org.apache.syncope.core.persistence.jpa.dao.AbstractDAO
LOG
-
-
Constructor Summary
Constructors Constructor Description JPARelationshipTypeDAO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
delete(String key)
RelationshipType
find(String key)
List<RelationshipType>
findAll()
RelationshipType
save(RelationshipType anyType)
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.dao.AbstractDAO
detach, entityManager, entityManagerFactory, refresh
-
-
-
-
Method Detail
-
find
public RelationshipType find(String key)
- Specified by:
find
in interfaceRelationshipTypeDAO
-
findAll
public List<RelationshipType> findAll()
- Specified by:
findAll
in interfaceRelationshipTypeDAO
-
save
public RelationshipType save(RelationshipType anyType)
- Specified by:
save
in interfaceRelationshipTypeDAO
-
delete
public void delete(String key)
- Specified by:
delete
in interfaceRelationshipTypeDAO
-
-