Package org.apache.cxf.jca.outbound
Class CXFConnectionSpec
- java.lang.Object
-
- org.apache.cxf.jca.outbound.CXFConnectionSpec
-
- All Implemented Interfaces:
javax.resource.spi.ConnectionRequestInfo
public class CXFConnectionSpec extends Object implements javax.resource.spi.ConnectionRequestInfo
The CXFConnectionSpec contains properties that needed for obtaining aCXFConnection.
-
-
Constructor Summary
Constructors Constructor Description CXFConnectionSpec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)StringgetAddress()URLgetBusConfigURL()QNamegetEndpointName()Class<?>getServiceClass()QNamegetServiceName()URLgetWsdlURL()inthashCode()voidsetAddress(String address)voidsetBusConfigURL(URL busConfigURL)voidsetEndpointName(QName endpointName)voidsetServiceClass(Class<?> serviceClass)voidsetServiceName(QName serviceName)voidsetWsdlURL(URL wsdlURL)StringtoString()
-
-
-
Method Detail
-
getServiceClass
public Class<?> getServiceClass()
- Returns:
- the serviceClass
-
setServiceClass
public void setServiceClass(Class<?> serviceClass)
- Parameters:
serviceClass- the serviceClass to set
-
getWsdlURL
public URL getWsdlURL()
- Returns:
- the wsdlURL
-
setWsdlURL
public void setWsdlURL(URL wsdlURL)
- Parameters:
wsdlURL- the wsdlURL to set
-
getBusConfigURL
public URL getBusConfigURL()
- Returns:
- the busConfigURL
-
setBusConfigURL
public void setBusConfigURL(URL busConfigURL)
- Parameters:
busConfigURL- the busConfigURL to set
-
getServiceName
public QName getServiceName()
- Returns:
- the serviceName
-
setServiceName
public void setServiceName(QName serviceName)
- Parameters:
serviceName- the serviceName to set
-
getEndpointName
public QName getEndpointName()
- Returns:
- the endpointName
-
setEndpointName
public void setEndpointName(QName endpointName)
- Parameters:
endpointName- the endpointName to set
-
getAddress
public String getAddress()
- Returns:
- the address
-
setAddress
public void setAddress(String address)
- Parameters:
address- the address to set
-
equals
public boolean equals(Object other)
-
hashCode
public int hashCode()
-
-