Package org.apache.catalina.storeconfig
Class StandardServerSF
- java.lang.Object
-
- org.apache.catalina.storeconfig.StoreFactoryBase
-
- org.apache.catalina.storeconfig.StandardServerSF
-
- All Implemented Interfaces:
IStoreFactory
public class StandardServerSF extends StoreFactoryBase
Store server.xml Server element and children ( Listener,GlobalNamingResource,Service)
-
-
Field Summary
-
Fields inherited from class org.apache.catalina.storeconfig.StoreFactoryBase
sm
-
-
Constructor Summary
Constructors Constructor Description StandardServerSF()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
store(java.io.PrintWriter aWriter, int indent, java.lang.Object aServer)
Store a server.xml element with attributes and children.void
storeChildren(java.io.PrintWriter aWriter, int indent, java.lang.Object aObject, StoreDescription parentDesc)
Store the specified server element children.-
Methods inherited from class org.apache.catalina.storeconfig.StoreFactoryBase
getInfo, getRegistry, getStoreAppender, setRegistry, setStoreAppender, storeElement, storeElementArray, storeXMLHead
-
-
-
-
Method Detail
-
store
public void store(java.io.PrintWriter aWriter, int indent, java.lang.Object aServer) throws java.lang.Exception
Description copied from interface:IStoreFactory
Store a server.xml element with attributes and children.- Specified by:
store
in interfaceIStoreFactory
- Overrides:
store
in classStoreFactoryBase
- Parameters:
aWriter
- the writer to write toindent
- the indentationaServer
- the element to write- Throws:
java.lang.Exception
- if an error occurs
-
storeChildren
public void storeChildren(java.io.PrintWriter aWriter, int indent, java.lang.Object aObject, StoreDescription parentDesc) throws java.lang.Exception
Store the specified server element children.Must Implement at subclass for custom store children handling.
- Overrides:
storeChildren
in classStoreFactoryBase
- Parameters:
aWriter
- Current output writerindent
- Indentation levelaObject
- Current elementparentDesc
- The element description- Throws:
java.lang.Exception
- Configuration storing error
-
-