Package org.smooks.api.bean.repository
Interface BeanId
-
- All Known Implementing Classes:
DefaultBeanId
public interface BeanIdBean 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 aBeanIdStoreand there by coupled to thatBeanIdStore. The BeanId holds the originalStringbeanId,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 BeanIdStoregetBeanIdStore()ResourceConfiggetCreateResourceConfiguration()intgetIndex()StringgetName()BeanIdsetCreateResourceConfiguration(ResourceConfig createResourceConfig)
-
-
-
Method Detail
-
setCreateResourceConfiguration
BeanId setCreateResourceConfiguration(ResourceConfig createResourceConfig)
-
getCreateResourceConfiguration
ResourceConfig getCreateResourceConfiguration()
-
getIndex
int getIndex()
-
getName
String getName()
-
getBeanIdStore
BeanIdStore getBeanIdStore()
-
-