01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.simulator.app;
05:
06: import com.tc.simulator.listener.ListenerProvider;
07:
08: public interface ApplicationBuilder {
09: public Application newApplication(String applicationId,
10: ListenerProvider listenerProvider)
11: throws ApplicationInstantiationException;
12:
13: public ClassLoader getContextClassLoader();
14:
15: void setAppConfigAttribute(String key, String value);
16: }
|