01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.server;
05:
06: /**
07: * Constants relating to TCServer and friends.
08: *
09: * @author jvoegele
10: */
11: public class ServerConstants {
12:
13: /** Fully-qualified class name of main class for launching TC server. */
14: public static final String SERVER_MAIN_CLASS_NAME = TCServerMain.class
15: .getName();
16: }
|