KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > simulator > app > ApplicationConfig


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.simulator.app;
5
6 import com.tc.objectserver.control.ServerControl;
7
8
9 public interface ApplicationConfig {
10   
11   public String JavaDoc getApplicationClassname();
12
13   public void setAttribute(String JavaDoc key, String JavaDoc value);
14
15   public String JavaDoc getAttribute(String JavaDoc key);
16   
17   public int getGlobalParticipantCount();
18   
19   public int getIntensity();
20   
21   public ServerControl getServerControl();
22   
23   public ApplicationConfig copy();
24 }
25
Popular Tags