KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > config > DSOApplicationConfig


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.config;
5
6 import com.tc.config.schema.builder.DSOApplicationConfigBuilder;
7
8 /**
9  * Interface for the DSO Application section of the config file. This is for building config files programmatically.
10  */

11 public interface DSOApplicationConfig {
12   public void addRoot(String JavaDoc rootName, String JavaDoc rootFieldName);
13
14   public void addIncludePattern(String JavaDoc classPattern);
15
16   public void addWriteAutolock(String JavaDoc methodPattern);
17   
18   public void addReadAutolock(String JavaDoc methodPattern);
19
20   public void addIncludePattern(String JavaDoc classname, boolean honorTransient);
21
22   public void writeTo(DSOApplicationConfigBuilder appConfigBuilder);
23 }
24
Popular Tags