Package com.soffid.iam.service.ejb
Class AttributeTranslationServiceBean
- java.lang.Object
-
- org.springframework.ejb.support.AbstractStatelessSessionBean
-
- com.soffid.iam.service.ejb.AttributeTranslationServiceBean
-
- All Implemented Interfaces:
com.soffid.iam.service.ejb.AttributeTranslationService
,Serializable
,javax.ejb.EnterpriseBean
,javax.ejb.SessionBean
,org.springframework.ejb.support.SmartSessionBean
public class AttributeTranslationServiceBean extends org.springframework.ejb.support.AbstractStatelessSessionBean implements com.soffid.iam.service.ejb.AttributeTranslationService
- See Also:
com.soffid.iam.service.AttributeTranslationService
,,com.soffid.iam.service.AttributeTranslationService
,, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
BEAN_FACTORY_PATH_ENVIRONMENT_KEY
-
Constructor Summary
Constructors Constructor Description AttributeTranslationServiceBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.soffid.iam.api.AttributeTranslation
create(com.soffid.iam.api.AttributeTranslation att)
void
delete(com.soffid.iam.api.AttributeTranslation att)
void
ejbCreate()
Initizlizes beenvoid
ejbRemove()
Collection<com.soffid.iam.api.AttributeTranslation>
findByColumn1(String domain, String column1)
Collection<com.soffid.iam.api.AttributeTranslation>
findByColumn2(String domain, String column2)
Collection<com.soffid.iam.api.AttributeTranslation>
findByExample(String domain, String column1, String column2)
Collection<com.soffid.iam.api.AttributeTranslation>
findByTextAndJsonQuery(String text, String query, Integer start, Integer pageSize)
com.soffid.iam.api.AsyncList<com.soffid.iam.api.AttributeTranslation>
findByTextAndJsonQueryAsync(String text, String query)
Collection<String>
findDomains()
protected org.springframework.beans.factory.BeanFactory
getBeanFactory()
javax.ejb.SessionContext
getSessionContext()
protected void
onEjbCreate()
protected void
onEjbRemove()
void
setBeanFactoryLocator(org.springframework.beans.factory.access.BeanFactoryLocator arg0)
void
setBeanFactoryLocatorKey(String arg0)
void
setSessionContext(javax.ejb.SessionContext sessionContext)
Override default BeanFactoryLocator implementation to provide singleton loading of the application context Bean factory.com.soffid.iam.api.AttributeTranslation
update(com.soffid.iam.api.AttributeTranslation att)
-
Methods inherited from class org.springframework.ejb.support.AbstractStatelessSessionBean
ejbActivate, ejbPassivate
-
-
-
-
Field Detail
-
BEAN_FACTORY_PATH_ENVIRONMENT_KEY
public static final String BEAN_FACTORY_PATH_ENVIRONMENT_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
findByTextAndJsonQueryAsync
@PermitAll public com.soffid.iam.api.AsyncList<com.soffid.iam.api.AttributeTranslation> findByTextAndJsonQueryAsync(String text, String query) throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
findByTextAndJsonQueryAsync
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
create
@PermitAll public com.soffid.iam.api.AttributeTranslation create(com.soffid.iam.api.AttributeTranslation att) throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
create
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
update
@PermitAll public com.soffid.iam.api.AttributeTranslation update(com.soffid.iam.api.AttributeTranslation att) throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
update
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
findByColumn1
@PermitAll public Collection<com.soffid.iam.api.AttributeTranslation> findByColumn1(String domain, String column1) throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
findByColumn1
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
findByColumn2
@PermitAll public Collection<com.soffid.iam.api.AttributeTranslation> findByColumn2(String domain, String column2) throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
findByColumn2
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
findByExample
@PermitAll public Collection<com.soffid.iam.api.AttributeTranslation> findByExample(String domain, String column1, String column2) throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
findByExample
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
findByTextAndJsonQuery
@PermitAll public Collection<com.soffid.iam.api.AttributeTranslation> findByTextAndJsonQuery(String text, String query, Integer start, Integer pageSize) throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
findByTextAndJsonQuery
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
findDomains
@PermitAll public Collection<String> findDomains() throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
findDomains
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
delete
@PermitAll public void delete(com.soffid.iam.api.AttributeTranslation att) throws es.caib.seycon.ng.exception.InternalErrorException
- Specified by:
delete
in interfacecom.soffid.iam.service.ejb.AttributeTranslationService
- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
ejbCreate
@PostConstruct public void ejbCreate() throws javax.ejb.CreateException
Initizlizes been- Overrides:
ejbCreate
in classorg.springframework.ejb.support.AbstractStatelessSessionBean
- Throws:
javax.ejb.CreateException
- See Also:
AbstractStatelessSessionBean.onEjbCreate()
-
onEjbCreate
protected void onEjbCreate()
- Specified by:
onEjbCreate
in classorg.springframework.ejb.support.AbstractStatelessSessionBean
-
setSessionContext
public void setSessionContext(javax.ejb.SessionContext sessionContext)
Override default BeanFactoryLocator implementation to provide singleton loading of the application context Bean factory.- Specified by:
setSessionContext
in interfacejavax.ejb.SessionBean
- See Also:
SessionBean.setSessionContext(javax.ejb.SessionContext)
-
getSessionContext
public final javax.ejb.SessionContext getSessionContext()
- Specified by:
getSessionContext
in interfaceorg.springframework.ejb.support.SmartSessionBean
-
setBeanFactoryLocator
public void setBeanFactoryLocator(org.springframework.beans.factory.access.BeanFactoryLocator arg0)
-
setBeanFactoryLocatorKey
public void setBeanFactoryLocatorKey(String arg0)
-
getBeanFactory
protected org.springframework.beans.factory.BeanFactory getBeanFactory()
-
ejbRemove
public void ejbRemove()
-
onEjbRemove
protected void onEjbRemove()
-
-