1 16 17 package org.apache.catalina.storeconfig; 18 19 import java.io.PrintWriter ; 20 21 import org.apache.catalina.Context; 22 import org.apache.catalina.Host; 23 import org.apache.catalina.Server; 24 import org.apache.catalina.Service; 25 26 30 public interface IStoreConfig { 31 32 37 StoreRegistry getRegistry(); 38 39 45 void setRegistry(StoreRegistry aRegistry); 46 47 53 void storeConfig() throws Exception ; 54 55 64 void store(Server aServer) throws Exception ; 65 66 79 void store(PrintWriter aWriter, int indent, Server aServer); 80 81 94 void store(PrintWriter aWriter, int indent, Service aService); 95 96 109 void store(PrintWriter aWriter, int indent, Host aHost); 110 111 120 void store(Context aContext); 121 122 135 void store(PrintWriter aWriter, int indent, Context aContext); 136 } | Popular Tags |