KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > config > schema > DSORuntimeLoggingOptions


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

5 package com.tc.object.config.schema;
6
7 import com.tc.config.schema.NewConfig;
8 import com.tc.config.schema.dynamic.BooleanConfigItem;
9
10 /**
11  * Represents the runtime-logging options for DSO.
12  */

13 public interface DSORuntimeLoggingOptions extends NewConfig {
14
15   BooleanConfigItem logLockDebug();
16
17   BooleanConfigItem logFieldChangeDebug();
18
19   BooleanConfigItem logWaitNotifyDebug();
20
21   BooleanConfigItem logDistributedMethodDebug();
22
23   BooleanConfigItem logNewObjectDebug();
24
25   BooleanConfigItem logNonPortableDump();
26
27 }
28
Popular Tags