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 FILE_NAME = "startup-appender.jar"; 15 public static final String APPENDER_TYPE_FILENAME = "appender-type"; 16 17 void append() throws Exception; 18 } 19