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: publicinterface CounterSaver {
08:
09: void saveCounter();
10:
11: int getSavedCounter();
12:
13: }