01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.object.config.schema;
06:
07: import com.tc.config.schema.NewConfig;
08: import com.tc.config.schema.dynamic.BooleanConfigItem;
09:
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: }
|