1 57 58 package org.apache.wsif; 59 60 import java.io.Serializable ; 61 62 69 public interface WSIFCorrelationService { 70 71 74 76 83 public void put(WSIFCorrelationId correlator, Serializable state, long timeout) 84 throws WSIFException; 85 86 91 public Serializable get(WSIFCorrelationId id) throws WSIFException; 92 93 97 public void remove(WSIFCorrelationId id) throws WSIFException; 98 99 } 100 | Popular Tags |