KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > process > StartupAppender


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

5 package com.tc.process;
6
7 /**
8  * A <tt>StartupAppender</tt> implementation, if defined, will be invoked by the container subprocess just before the
9  * container itself is started. This will allow control over last minute changes such as hardcoded port numbers in
10  * config files.
11  */

12 public interface StartupAppender {
13
14   public static final String JavaDoc FILE_NAME = "startup-appender.jar";
15   public static final String JavaDoc APPENDER_TYPE_FILENAME = "appender-type";
16
17   void append() throws Exception JavaDoc;
18 }
19
Popular Tags