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.config.schema;5 6 import com.tc.config.schema.dynamic.FileConfigItem;7 import com.tc.config.schema.dynamic.IntConfigItem;8 import com.tc.config.schema.dynamic.StringConfigItem;9 10 /**11 * Contains methods exposing DSO L2 config.12 */13 public interface NewCommonL2Config extends NewConfig {14 15 FileConfigItem dataPath();16 17 FileConfigItem logsPath();18 19 IntConfigItem jmxPort();20 21 StringConfigItem host();22 23 boolean authentication();24 25 String authenticationPasswordFile();26 27 String authenticationAccessFile();28 }29