Package org.apache.catalina.storeconfig
Interface IStoreConfig
- 
- All Known Implementing Classes:
- StoreConfig
 
 public interface IStoreConfig
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StoreRegistrygetRegistry()Get Configuration RegistryServergetServer()Get associated servervoidsetRegistry(StoreRegistry aRegistry)Set Configuration RegistryvoidsetServer(Server aServer)Set associated servervoidstore(java.io.PrintWriter aWriter, int indent, Context aContext)Store the specified Context properties.voidstore(java.io.PrintWriter aWriter, int indent, Host aHost)Store the specified Host properties.voidstore(java.io.PrintWriter aWriter, int indent, Server aServer)Store the specified Server properties.voidstore(java.io.PrintWriter aWriter, int indent, Service aService)Store the specified Service properties.booleanstore(Context aContext)Store the specified Context properties.booleanstore(Server aServer)Store the specified Server properties.voidstoreConfig()Store the current StoreFactory Server.
 
- 
- 
- 
Method Detail- 
getRegistryStoreRegistry getRegistry() Get Configuration Registry- Returns:
- aRegistry that handle the store operations
 
 - 
setRegistryvoid setRegistry(StoreRegistry aRegistry) Set Configuration Registry- Parameters:
- aRegistry- aregistry that handle the store operations
 
 - 
getServerServer getServer() Get associated server- Returns:
- aServer the associated server
 
 - 
setServervoid setServer(Server aServer) Set associated server- Parameters:
- aServer- the associated server
 
 - 
storeConfigvoid storeConfig() Store the current StoreFactory Server.
 - 
storeboolean store(Server aServer) Store the specified Server properties.- Parameters:
- aServer- Object to be stored
- Returns:
- trueif the store operation was successful
 
 - 
storevoid store(java.io.PrintWriter aWriter, int indent, Server aServer) throws java.lang.ExceptionStore the specified Server properties.- Parameters:
- aWriter- PrintWriter to which we are storing
- indent- Number of spaces to indent this element
- aServer- Object to be stored
- Throws:
- java.lang.Exception- Store error occurred
 
 - 
storevoid store(java.io.PrintWriter aWriter, int indent, Service aService) throws java.lang.ExceptionStore the specified Service properties.- Parameters:
- aWriter- PrintWriter to which we are storing
- indent- Number of spaces to indent this element
- aService- Object to be stored
- Throws:
- java.lang.Exception- Store error occurred
 
 - 
storevoid store(java.io.PrintWriter aWriter, int indent, Host aHost) throws java.lang.ExceptionStore the specified Host properties.- Parameters:
- aWriter- PrintWriter to which we are storing
- indent- Number of spaces to indent this element
- aHost- Object to be stored
- Throws:
- java.lang.Exception- Store error occurred
 
 - 
storeboolean store(Context aContext) Store the specified Context properties.- Parameters:
- aContext- Object to be stored
- Returns:
- trueif the store operation was successful
 
 - 
storevoid store(java.io.PrintWriter aWriter, int indent, Context aContext) throws java.lang.ExceptionStore the specified Context properties.- Parameters:
- aWriter- PrintWriter to which we are storing
- indent- Number of spaces to indent this element
- aContext- Object to be stored
- Throws:
- java.lang.Exception- Store error occurred
 
 
- 
 
-