Package org.apache.synapse.config.xml
Interface StartupFactory
-
- All Known Implementing Classes:
SimpleQuartzFactory
public interface StartupFactory
Defines the factories which builds startups
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Startup
createStartup(org.apache.axiom.om.OMElement elem)
Create (build from OM) from the specified OMElementClass<? extends StartupSerializer>
getSerializerClass()
Get the Serializer class for this factoryQName
getTagQName()
Get the tag QName of the element
-
-
-
Method Detail
-
createStartup
Startup createStartup(org.apache.axiom.om.OMElement elem)
Create (build from OM) from the specified OMElement- Parameters:
elem
- OMELement describing the Startup- Returns:
- Startup build from the given element
-
getTagQName
QName getTagQName()
Get the tag QName of the element- Returns:
- QName of the element
-
getSerializerClass
Class<? extends StartupSerializer> getSerializerClass()
Get the Serializer class for this factory- Returns:
- Class defining the serialization of the startup
-
-