Package org.apache.catalina.storeconfig
Class StandardContextSF
- java.lang.Object
- 
- org.apache.catalina.storeconfig.StoreFactoryBase
- 
- org.apache.catalina.storeconfig.StandardContextSF
 
 
- 
- All Implemented Interfaces:
- IStoreFactory
 
 public class StandardContextSF extends StoreFactoryBase Store server.xml Context element with all children- Store all context at server.xml
- Store existing app.xml context a conf/enginename/hostname/app.xml
- Store with backup
 
- 
- 
Field Summary- 
Fields inherited from class org.apache.catalina.storeconfig.StoreFactoryBasesm
 
- 
 - 
Constructor SummaryConstructors Constructor Description StandardContextSF()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.io.FileconfigBase(Context context)Return a File object representing the "configuration root" directory for our associated Host.protected java.lang.String[]filterWatchedResources(StandardContext context, java.lang.String[] wresources)Filter out the default watched resources, to remove standard ones.protected StoreFileMovergetConfigFileWriter(Context context)Get explicit writer for context (context.getConfigFile()).voidstore(java.io.PrintWriter aWriter, int indent, java.lang.Object aContext)Store a Context as Separate file as configFile value from context exists.voidstoreChildren(java.io.PrintWriter aWriter, int indent, java.lang.Object aContext, StoreDescription parentDesc)Store the specified context element children.protected voidstoreContextSeparate(java.io.PrintWriter aWriter, int indent, StandardContext aContext)Store a Context without backup add separate file or when configFile = null a aWriter.protected voidstoreWithBackup(StandardContext aContext)Store the Context with a Backup.- 
Methods inherited from class org.apache.catalina.storeconfig.StoreFactoryBasegetInfo, getRegistry, getStoreAppender, setRegistry, setStoreAppender, storeElement, storeElementArray, storeXMLHead
 
- 
 
- 
- 
- 
Method Detail- 
storepublic void store(java.io.PrintWriter aWriter, int indent, java.lang.Object aContext) throws java.lang.ExceptionStore a Context as Separate file as configFile value from context exists. filename can be relative to catalina.base.- Specified by:
- storein interface- IStoreFactory
- Overrides:
- storein class- StoreFactoryBase
- Throws:
- java.lang.Exception
- See Also:
- IStoreFactory.store(java.io.PrintWriter, int, java.lang.Object)
 
 - 
storeContextSeparateprotected void storeContextSeparate(java.io.PrintWriter aWriter, int indent, StandardContext aContext) throws java.lang.ExceptionStore a Context without backup add separate file or when configFile = null a aWriter.- Parameters:
- aWriter- Current output writer
- indent- Indentation level
- aContext- The context which will be stored
- Throws:
- java.lang.Exception- Configuration storing error
 
 - 
storeWithBackupprotected void storeWithBackup(StandardContext aContext) throws java.lang.Exception Store the Context with a Backup.- Parameters:
- aContext- The context which will be stored
- Throws:
- java.lang.Exception- Configuration storing error
 
 - 
getConfigFileWriterprotected StoreFileMover getConfigFileWriter(Context context) throws java.lang.Exception Get explicit writer for context (context.getConfigFile()).- Parameters:
- context- The context which will be stored
- Returns:
- The file mover
- Throws:
- java.lang.Exception- Error getting a writer for the configuration file
 
 - 
storeChildrenpublic void storeChildren(java.io.PrintWriter aWriter, int indent, java.lang.Object aContext, StoreDescription parentDesc) throws java.lang.ExceptionStore the specified context element children.- Overrides:
- storeChildrenin class- StoreFactoryBase
- Parameters:
- aWriter- Current output writer
- indent- Indentation level
- aContext- Context to store
- parentDesc- The element description
- Throws:
- java.lang.Exception- Configuration storing error
 
 - 
configBaseprotected java.io.File configBase(Context context) Return a File object representing the "configuration root" directory for our associated Host.- Parameters:
- context- The context instance
- Returns:
- a file to the configuration base path
 
 - 
filterWatchedResourcesprotected java.lang.String[] filterWatchedResources(StandardContext context, java.lang.String[] wresources) throws java.lang.Exception Filter out the default watched resources, to remove standard ones.- Parameters:
- context- The context instance
- wresources- The raw watched resources list
- Returns:
- The filtered watched resources
- Throws:
- java.lang.Exception- Configuration storing error TODO relative watched resources TODO absolute handling configFile TODO Filename case handling for Windows? TODO digester variable substitution $catalina.base, $catalina.home
 
 
- 
 
-