Class SAML2IdPEntityServiceImpl
- java.lang.Object
-
- org.apache.syncope.core.rest.cxf.service.AbstractService
-
- org.apache.syncope.core.rest.cxf.service.SAML2IdPEntityServiceImpl
-
- All Implemented Interfaces:
JAXRSService
,SAML2IdPEntityService
@Service public class SAML2IdPEntityServiceImpl extends AbstractService implements SAML2IdPEntityService
-
-
Field Summary
Fields Modifier and Type Field Description protected SAML2IdPEntityLogic
logic
-
Fields inherited from class org.apache.syncope.core.rest.cxf.service.AbstractService
LOG, messageContext, OPTIONS_ALLOW, searchContext, uriInfo
-
Fields inherited from interface org.apache.syncope.common.rest.api.service.JAXRSService
CRLF, DOUBLE_DASH, PARAM_ANYTYPE_KIND, PARAM_ANYTYPEKEY, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_KEYWORD, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_REALM, PARAM_RECURSIVE, PARAM_RESOURCE, PARAM_SIZE, PARAM_USER
-
Fields inherited from interface org.apache.syncope.common.rest.api.service.SAML2IdPEntityService
DEFAULT_OWNER
-
-
Constructor Summary
Constructors Constructor Description SAML2IdPEntityServiceImpl(SAML2IdPEntityLogic logic)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SAML2IdPEntityTO
get(String key)
Returns the SAML 2.0 IdP entity matching the given key.List<SAML2IdPEntityTO>
list()
Returns the SAML 2.0 IdP entities.void
set(SAML2IdPEntityTO entityTO)
Store the entity to finalize the generation process.-
Methods inherited from class org.apache.syncope.core.rest.cxf.service.AbstractService
applyPreference, buildPagedResult, checkETag, createResponse, findActualKey, getOrderByClauses, getPreference, isNullPriorityAsync, modificationResponse
-
-
-
-
Field Detail
-
logic
protected final SAML2IdPEntityLogic logic
-
-
Constructor Detail
-
SAML2IdPEntityServiceImpl
public SAML2IdPEntityServiceImpl(SAML2IdPEntityLogic logic)
-
-
Method Detail
-
list
public List<SAML2IdPEntityTO> list()
Description copied from interface:SAML2IdPEntityService
Returns the SAML 2.0 IdP entities.- Specified by:
list
in interfaceSAML2IdPEntityService
- Returns:
- SAML 2.0 IdP entities
-
get
public SAML2IdPEntityTO get(String key)
Description copied from interface:SAML2IdPEntityService
Returns the SAML 2.0 IdP entity matching the given key.- Specified by:
get
in interfaceSAML2IdPEntityService
- Parameters:
key
- key of requested SAML 2.0 IdP entity- Returns:
- SAML 2.0 IdP entity with matching key
-
set
public void set(SAML2IdPEntityTO entityTO)
Description copied from interface:SAML2IdPEntityService
Store the entity to finalize the generation process.- Specified by:
set
in interfaceSAML2IdPEntityService
- Parameters:
entityTO
- entity to be created
-
-