01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.config.schema;
05:
06: import org.apache.xmlbeans.XmlObject;
07:
08: import com.tc.config.schema.dynamic.ConfigItem;
09:
10: /**
11: * An interface implemented by all config objects.
12: */
13: public interface NewConfig {
14:
15: void changesInItemIgnored(ConfigItem item);
16:
17: void changesInItemForbidden(ConfigItem item);
18:
19: XmlObject getBean();
20:
21: }
|