  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

Status:

Peter Robach
29.11.2004
	
Feature
=========================
	Backup context.xml
	Backup fr server.xml
	Cluster Handling
	Store all 5.5.5 elements
	Context workDir default Handling
	WatchedResource Default Handling
	Write your own Registry
		System Property -Dcatalina.storeconfig=file:../xxx.xml
		${catalina.base}/conf bzw ${catalina.home}/conf
		Classpath org.apache.catalina.storeconfig
	JMX StoreConfig MBean
		Store context.xml and server.xmls
	Store Format is changeable with StoreAppenders
	Easy extendable 
	Connector support
		AJP
		HTTP
		HTTPS
	Context.xml and server.xml with backup				
		 
Example
=========================
	
	<Server ...>
	      <Listener className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>
          <Service ...
		  </Service>
    </Server>
	
	Usages with JMX Adaptor 
		ObjectName : Catalina:type=StoreConfig
		
		important operations:
			storeConfig			Store complete server
			storeServer			Store Server with ObjectName"               
			   parameter name="objectname"
                 description="Objectname from Server"
                 default="Catalina:type=Server"
			   parameter name="backup"
                 description="store Context with backup"
               parameter name="externalAllowed"
                 description="store all Context external that have a configFile"
            storeContext 		Store Context from ObjectName 
               parameter name="objectname"
                 description="ObjectName from Context"
                 example="Catalina:j2eeType=WebModule,name=//localhost/manager,J2EEApplication=none,J2EEServer=none
			   parameter name="backup"
                 description="store with Backup"
               parameter name="externalAllowed"
                 description="store all or store only internal server.xml context (configFile == null)"
			
Have fun
Peter Rossbach


	