1 17 package org.apache.geronimo.webservices; 18 19 import org.apache.geronimo.interceptor.InvocationKey; 20 21 24 public final class MessageContextInvocationKey implements InvocationKey { 25 26 public static final MessageContextInvocationKey INSTANCE = new MessageContextInvocationKey(); 27 28 private MessageContextInvocationKey() { 29 30 } 31 32 public boolean isTransient() { 33 return true; 34 } 35 36 } 37 | Popular Tags |