1 23 24 package com.sun.enterprise.admin.common.domains.registry; 25 26 import java.io.IOException ; 27 28 29 import java.io.Serializable ; 30 31 32 39 public interface LockingStore 40 { 41 42 56 void writeObject(Object o) throws IOException , IllegalStateException ; 57 72 Object readObject() throws IOException , TimeoutException, ClassNotFoundException ; 73 84 void lock() throws IOException , TimeoutException; 85 93 void unlock(); 94 99 long lastModified(); 100 } 101 | Popular Tags |