Package org.smooks.api.bean.repository
Interface BeanId
-
- All Known Implementing Classes:
DefaultBeanId
public interface BeanId
Bean Id The BeanId represents the id of a bean. It is used to set and retrieve instance of the bean from the BeanRepository. The String representation of the BeanId is registered with aBeanIdStore
and there by coupled to thatBeanIdStore
. The BeanId holds the originalString
beanId,also called beanIdName. It also holds the index of the place it has within theBeanIdStore
.- Author:
- maurice.zeijen@smies.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BeanIdStore
getBeanIdStore()
ResourceConfig
getCreateResourceConfiguration()
int
getIndex()
String
getName()
BeanId
setCreateResourceConfiguration(ResourceConfig createResourceConfig)
-
-
-
Method Detail
-
setCreateResourceConfiguration
BeanId setCreateResourceConfiguration(ResourceConfig createResourceConfig)
-
getCreateResourceConfiguration
ResourceConfig getCreateResourceConfiguration()
-
getIndex
int getIndex()
-
getName
String getName()
-
getBeanIdStore
BeanIdStore getBeanIdStore()
-
-