Class StoreFactoryBase
java.lang.Object
org.apache.catalina.storeconfig.StoreFactoryBase
- All Implemented Interfaces:
IStoreFactory
- Direct Known Subclasses:
CatalinaClusterSF, ChannelSF, ConnectorSF, CredentialHandlerSF, GlobalNamingResourcesSF, InterceptorSF, JarScannerSF, LoaderSF, ManagerSF, NamingResourcesSF, OpenSSLConfSF, PersistentManagerSF, RealmSF, SenderSF, SSLHostConfigSF, StandardContextSF, StandardEngineSF, StandardHostSF, StandardServerSF, StandardServiceSF, WatchedResourceSF, WebResourceRootSF, WrapperLifecycleSF, WrapperListenerSF
StoreFactory saves special elements. Output was generated with StoreAppenders.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final StringManagerThe string manager for this package. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetInfo()Returns descriptive information about this Factory implementation and the corresponding version number, in the format<description>/<version>.Get the associated registry.Get the store appender.voidsetRegistry(StoreRegistry aRegistry) Set the registry.voidsetStoreAppender(StoreAppender storeAppender) Set the store appender.voidstore(PrintWriter aWriter, int indent, Object aElement) Store a server.xml element with attributes and children.voidstoreChildren(PrintWriter aWriter, int indent, Object aElement, StoreDescription elementDesc) Must Implement at subclass for custom store children handling.protected voidstoreElement(PrintWriter aWriter, int indent, Object aTagElement) Store only elements from storeChildren methods that are not a transient child.protected voidstoreElementArray(PrintWriter aWriter, int indent, Object[] elements) Save an array of elements.voidstoreXMLHead(PrintWriter aWriter) Store XML header.
-
Field Details
-
sm
The string manager for this package.
-
-
Constructor Details
-
StoreFactoryBase
public StoreFactoryBase()Constructs a new StoreFactoryBase with default settings.
-
-
Method Details
-
getInfo
Returns descriptive information about this Factory implementation and the corresponding version number, in the format<description>/<version>.- Returns:
- descriptive information about this Factory implementation and the corresponding version number, in the
format
<description>/<version>.
-
getStoreAppender
Description copied from interface:IStoreFactoryGet the store appender.- Specified by:
getStoreAppenderin interfaceIStoreFactory- Returns:
- the writer
-
setStoreAppender
Description copied from interface:IStoreFactorySet the store appender.- Specified by:
setStoreAppenderin interfaceIStoreFactory- Parameters:
storeAppender- the writer
-
setRegistry
Description copied from interface:IStoreFactorySet the registry.- Specified by:
setRegistryin interfaceIStoreFactory- Parameters:
aRegistry- the registry to be associated with
-
getRegistry
Description copied from interface:IStoreFactoryGet the associated registry.- Specified by:
getRegistryin interfaceIStoreFactory- Returns:
- the associated registry
-
storeXMLHead
Description copied from interface:IStoreFactoryStore XML header.- Specified by:
storeXMLHeadin interfaceIStoreFactory- Parameters:
aWriter- the writer to write to
-
store
Description copied from interface:IStoreFactoryStore a server.xml element with attributes and children.- Specified by:
storein interfaceIStoreFactory- Parameters:
aWriter- the writer to write toindent- the indentationaElement- the element to write- Throws:
Exception- if an error occurs
-
storeChildren
public void storeChildren(PrintWriter aWriter, int indent, Object aElement, StoreDescription elementDesc) throws Exception Must Implement at subclass for custom store children handling.- Parameters:
aWriter- Current output writerindent- Indentation levelaElement- Current elementelementDesc- The element description- Throws:
Exception- Configuration storing error
-
storeElement
Store only elements from storeChildren methods that are not a transient child.- Parameters:
aWriter- Current output writerindent- Indentation levelaTagElement- Current element- Throws:
Exception- Configuration storing error
-
storeElementArray
protected void storeElementArray(PrintWriter aWriter, int indent, Object[] elements) throws Exception Save an array of elements.- Parameters:
aWriter- Current output writerindent- Indentation levelelements- Array of elements- Throws:
Exception- Configuration storing error
-