1 7 package com.inversoft.config; 8 9 10 import java.util.Map ; 11 12 import org.jdom.Document; 13 14 15 42 public interface ConfigBuilder { 43 44 66 void build(Document document, ConfigRegistry registry) 67 throws ConfigurationException; 68 69 93 void rebuild(Document document, ConfigRegistry registry) 94 throws ConfigurationException; 95 96 129 void validate(ConfigRegistry registry, Map otherRegistries) 130 throws ConfigurationException; 131 132 153 void commit(ConfigRegistry registry, Map otherRegistries); 154 } 155 | Popular Tags |