01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.admin.common;
05:
06: public interface LockElementWrapper {
07: String getLockID();
08:
09: void setStackTrace(String s);
10:
11: String getStackTrace();
12:
13: void setAllStackTraces(String allTraces);
14:
15: String getAllStackTraces();
16: }
|