1 23 24 package com.sun.enterprise.connectors.inflow; 25 26 import javax.resource.spi.ActivationSpec ; 27 import javax.resource.spi.endpoint.MessageEndpointFactory ; 28 29 36 public class MessageEndpointFactoryInfo 37 { 38 40 private MessageEndpointFactory factory_; 41 private ActivationSpec as_; 42 43 47 MessageEndpointFactoryInfo (MessageEndpointFactory fac, ActivationSpec as) 48 { 49 factory_ = fac; 50 as_ = as; 51 } 52 53 56 public MessageEndpointFactory getEndpointFactory() 57 { 58 return this.factory_; 59 } 60 61 64 public ActivationSpec getActivationSpec() 65 { 66 return this.as_; 67 } 68 } 69 | Popular Tags |