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:
05: package com.tctest.spring.bean;
06:
07: public interface ISingleton {
08:
09: public int getCounter();
10:
11: public void incrementCounter();
12:
13: public String getTransientValue();
14:
15: public void setTransientValue(String transientValue);
16:
17: public boolean toggleBoolean();
18:
19: public void resetCounter();
20:
21: }
|