Package cz.o2.proxima.core.repository
Interface ConsumerNameFactory<T>
-
- All Superinterfaces:
java.io.Serializable
public interface ConsumerNameFactory<T> extends java.io.Serializable
Consumer name generator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
apply()
Get consumer namevoid
setup(T context)
Initialize for given context.
-
-
-
Method Detail
-
setup
void setup(T context)
Initialize for given context.- Parameters:
context
- the context of this generator context
-
apply
java.lang.String apply()
Get consumer name- Returns:
- String consumer name
-
-