01: /*
02: * Created on 05-Jan-2006
03: */
04: package uk.org.ponder.rsf.state;
05:
06: /** Acquires unique objects, which have identity equality equivalent to
07: * String equality on the supplied String.
08: * @author Antranig Basman (amb26@ponder.org.uk)
09: *
10: */
11:
12: public interface LockGetter {
13: public Object getLock(String lockname);
14:
15: public void returnLock(String lockname);
16: }
|