Class AnyTypeDataBinderImpl
- java.lang.Object
-
- org.apache.syncope.core.provisioning.java.data.AnyTypeDataBinderImpl
-
- All Implemented Interfaces:
AnyTypeDataBinder
public class AnyTypeDataBinderImpl extends Object implements AnyTypeDataBinder
-
-
Field Summary
Fields Modifier and Type Field Description protected AccessTokenDAOaccessTokenDAOprotected AnyTypeClassDAOanyTypeClassDAOprotected AnyTypeDAOanyTypeDAOprotected EntityFactoryentityFactoryprotected static LoggerLOGprotected SecurityPropertiessecurityProperties
-
Constructor Summary
Constructors Constructor Description AnyTypeDataBinderImpl(SecurityProperties securityProperties, AnyTypeDAO anyTypeDAO, AnyTypeClassDAO anyTypeClassDAO, AccessTokenDAO accessTokenDAO, EntityFactory entityFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnyTypecreate(AnyTypeTO anyTypeTO)AnyTypeTOdelete(AnyType anyType)AnyTypeTOgetAnyTypeTO(AnyType anyType)voidupdate(AnyType anyType, AnyTypeTO anyTypeTO)
-
-
-
Field Detail
-
LOG
protected static final Logger LOG
-
securityProperties
protected final SecurityProperties securityProperties
-
anyTypeDAO
protected final AnyTypeDAO anyTypeDAO
-
anyTypeClassDAO
protected final AnyTypeClassDAO anyTypeClassDAO
-
accessTokenDAO
protected final AccessTokenDAO accessTokenDAO
-
entityFactory
protected final EntityFactory entityFactory
-
-
Constructor Detail
-
AnyTypeDataBinderImpl
public AnyTypeDataBinderImpl(SecurityProperties securityProperties, AnyTypeDAO anyTypeDAO, AnyTypeClassDAO anyTypeClassDAO, AccessTokenDAO accessTokenDAO, EntityFactory entityFactory)
-
-
Method Detail
-
create
public AnyType create(AnyTypeTO anyTypeTO)
- Specified by:
createin interfaceAnyTypeDataBinder
-
update
public void update(AnyType anyType, AnyTypeTO anyTypeTO)
- Specified by:
updatein interfaceAnyTypeDataBinder
-
delete
public AnyTypeTO delete(AnyType anyType)
- Specified by:
deletein interfaceAnyTypeDataBinder
-
getAnyTypeTO
public AnyTypeTO getAnyTypeTO(AnyType anyType)
- Specified by:
getAnyTypeTOin interfaceAnyTypeDataBinder
-
-