FileDocCategorySizeDatePackage
MessageEndpointFactoryInfo.javaAPI DocGlassfish v2 API3049Fri May 04 22:34:24 BST 2007com.sun.enterprise.connectors.inflow

MessageEndpointFactoryInfo

public final class MessageEndpointFactoryInfo extends Object
An instance of this class keeps ActivationSpec and MessageEndPointFactory related to a endpoint activation.
author
Qingqing Ouyang

Fields Summary
private final javax.resource.spi.endpoint.MessageEndpointFactory
factory_
private final javax.resource.spi.ActivationSpec
as_
Constructors Summary
MessageEndpointFactoryInfo(javax.resource.spi.endpoint.MessageEndpointFactory fac, javax.resource.spi.ActivationSpec as)

param
fac MessageEndpointFactory
param
as ActivationSpec

        factory_ = fac;
        as_ = as;
    
Methods Summary
public javax.resource.spi.ActivationSpecgetActivationSpec()

return
ActivationSpec object.

        return this.as_;
    
public javax.resource.spi.endpoint.MessageEndpointFactorygetEndpointFactory()

return
MessageEndpointFactory object.

        return this.factory_;