01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.objectserver;
06:
07: import com.tc.management.TerracottaMBean;
08:
09: public interface DSOApplicationEventsMBean extends TerracottaMBean {
10:
11: static final String NON_PORTABLE_OBJECT_EVENT = "non-portable error";
12: static final String UNLOCKED_SHARED_OBJECT_EVENT = "unlocked shared object error";
13: static final String READ_ONLY_OBJECT_EVENT = "read-only shared object error";
14:
15: }
|