Uses of Interface
org.smooks.api.bean.repository.BeanId
-
-
Uses of BeanId in org.smooks.api.bean.context
Methods in org.smooks.api.bean.context that return BeanId Modifier and Type Method Description BeanId
BeanContext. getBeanId(String beanId)
Get theBeanId
instance for the specified beanId String.BeanId
BeanIdStore. getBeanId(String beanId)
BeanId
BeanIdStore. register(String beanIdName)
Methods in org.smooks.api.bean.context that return types with arguments of type BeanId Modifier and Type Method Description Map<String,BeanId>
BeanIdStore. getBeanIdMap()
Methods in org.smooks.api.bean.context with parameters of type BeanId Modifier and Type Method Description void
BeanContext. addBean(BeanId beanId, Object bean)
Add a bean instance under the specifiedBeanId
.void
BeanContext. addBean(BeanId beanId, Object bean, Fragment<?> source)
Add a bean instance under the specified beanId string.void
BeanContext. changeBean(BeanId beanId, Object bean, Fragment<?> source)
Changes a bean instance of the givenBeanId
.boolean
BeanContext. containsBean(BeanId beanId)
Looks if a bean instance is set under theBeanId
Object
BeanContext. getBean(BeanId beanId)
Get the current bean, specified by the suppliedBeanId
.Object
BeanContext. removeBean(BeanId beanId, Fragment<?> source)
Removes a bean and all its associated lifecycle beans from the bean mapvoid
BeanContext. setBeanInContext(BeanId beanId, boolean inContext)
Mark the bean as being in context. -
Uses of BeanId in org.smooks.api.bean.lifecycle
Methods in org.smooks.api.bean.lifecycle that return BeanId Modifier and Type Method Description BeanId
BeanContextLifecycleEvent. getBeanId()
-
Uses of BeanId in org.smooks.api.bean.repository
Methods in org.smooks.api.bean.repository that return BeanId Modifier and Type Method Description BeanId
BeanId. setCreateResourceConfiguration(ResourceConfig createResourceConfig)
-
Uses of BeanId in org.smooks.engine.bean.context
Methods in org.smooks.engine.bean.context that return BeanId Modifier and Type Method Description BeanId
DefaultBeanIdStore. getBeanId(String beanId)
BeanId
StandaloneBeanContext. getBeanId(String beanId)
BeanId
DefaultBeanIdStore. register(String beanIdName)
registers a beanId name and returns theBeanId
object.Methods in org.smooks.engine.bean.context that return types with arguments of type BeanId Modifier and Type Method Description Map<String,BeanId>
DefaultBeanIdStore. getBeanIdMap()
Returns a copy of the internal bean id mapMethods in org.smooks.engine.bean.context with parameters of type BeanId Modifier and Type Method Description void
StandaloneBeanContext. addBean(BeanId beanId, Object bean)
void
StandaloneBeanContext. addBean(BeanId beanId, Object bean, Fragment<?> source)
void
StandaloneBeanContext. changeBean(BeanId beanId, Object bean, Fragment<?> source)
boolean
StandaloneBeanContext. containsBean(BeanId beanId)
Object
StandaloneBeanContext. getBean(BeanId beanId)
Object
StandaloneBeanContext. removeBean(BeanId beanId, Fragment<?> source)
void
StandaloneBeanContext. setBeanInContext(BeanId beanId, boolean inContext)
-
Uses of BeanId in org.smooks.engine.bean.lifecycle
Methods in org.smooks.engine.bean.lifecycle that return BeanId Modifier and Type Method Description BeanId
DefaultBeanContextLifecycleEvent. getBeanId()
Constructors in org.smooks.engine.bean.lifecycle with parameters of type BeanId Constructor Description DefaultBeanContextLifecycleEvent(ExecutionContext executionContext, Fragment<?> source, BeanLifecycle lifecycle, BeanId beanId, Object bean)
Public constructor. -
Uses of BeanId in org.smooks.engine.bean.repository
Classes in org.smooks.engine.bean.repository that implement BeanId Modifier and Type Class Description class
DefaultBeanId
Methods in org.smooks.engine.bean.repository that return BeanId Modifier and Type Method Description BeanId
DefaultBeanId. setCreateResourceConfiguration(ResourceConfig createResourceConfig)
Set theResourceConfig
associated with theBeanInstanceCreator
that is creating the bean with which thisBeanId
instance is associated. -
Uses of BeanId in org.smooks.engine.resource.visitor.smooks
Fields in org.smooks.engine.resource.visitor.smooks declared as BeanId Modifier and Type Field Description protected BeanId
NestedSmooksVisitor. bindBeanId
-