Class ApnsServiceFactory
- java.lang.Object
-
- org.apache.camel.component.apns.factory.ApnsServiceFactory
-
- All Implemented Interfaces:
org.apache.camel.CamelContextAware
public class ApnsServiceFactory extends Object implements org.apache.camel.CamelContextAware
-
-
Constructor Summary
Constructors Constructor Description ApnsServiceFactory()
ApnsServiceFactory(org.apache.camel.CamelContext camelContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected com.notnoop.apns.ApnsServiceBuilder
configureServiceBuilder(com.notnoop.apns.ApnsServiceBuilder serviceBuilder)
com.notnoop.apns.ApnsDelegate
getApnsDelegate()
com.notnoop.apns.ApnsService
getApnsService()
org.apache.camel.CamelContext
getCamelContext()
String
getCertificatePassword()
String
getCertificatePath()
ConnectionStrategy
getConnectionStrategy()
String
getFeedbackHost()
int
getFeedbackPort()
String
getGatewayHost()
int
getGatewayPort()
int
getPoolSize()
ReconnectionPolicy
getReconnectionPolicy()
org.apache.camel.support.jsse.SSLContextParameters
getSslContextParameters()
void
setApnsDelegate(com.notnoop.apns.ApnsDelegate apnsDelegate)
void
setCamelContext(org.apache.camel.CamelContext camelContext)
void
setCertificatePassword(String certificatePassword)
void
setCertificatePath(String certificatePath)
void
setConnectionStrategy(ConnectionStrategy connectionStrategy)
void
setFeedbackHost(String feedbackHost)
void
setFeedbackPort(int feedbackPort)
void
setGatewayHost(String gatewayHost)
void
setGatewayPort(int gatewayPort)
void
setPoolSize(int poolSize)
void
setReconnectionPolicy(ReconnectionPolicy reconnectionPolicy)
void
setSslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)
-
-
-
Method Detail
-
getCamelContext
public org.apache.camel.CamelContext getCamelContext()
- Specified by:
getCamelContext
in interfaceorg.apache.camel.CamelContextAware
-
setCamelContext
public void setCamelContext(org.apache.camel.CamelContext camelContext)
- Specified by:
setCamelContext
in interfaceorg.apache.camel.CamelContextAware
-
getFeedbackHost
public String getFeedbackHost()
-
setFeedbackHost
public void setFeedbackHost(String feedbackHost)
-
getGatewayHost
public String getGatewayHost()
-
setGatewayHost
public void setGatewayHost(String gatewayHost)
-
getGatewayPort
public int getGatewayPort()
-
setGatewayPort
public void setGatewayPort(int gatewayPort)
-
getFeedbackPort
public int getFeedbackPort()
-
setFeedbackPort
public void setFeedbackPort(int feedbackPort)
-
getPoolSize
public int getPoolSize()
-
setPoolSize
public void setPoolSize(int poolSize)
-
getCertificatePath
public String getCertificatePath()
-
setCertificatePath
public void setCertificatePath(String certificatePath)
-
getCertificatePassword
public String getCertificatePassword()
-
setCertificatePassword
public void setCertificatePassword(String certificatePassword)
-
getReconnectionPolicy
public ReconnectionPolicy getReconnectionPolicy()
-
setReconnectionPolicy
public void setReconnectionPolicy(ReconnectionPolicy reconnectionPolicy)
-
getConnectionStrategy
public ConnectionStrategy getConnectionStrategy()
-
setConnectionStrategy
public void setConnectionStrategy(ConnectionStrategy connectionStrategy)
-
getSslContextParameters
public org.apache.camel.support.jsse.SSLContextParameters getSslContextParameters()
-
setSslContextParameters
public void setSslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)
-
getApnsDelegate
public com.notnoop.apns.ApnsDelegate getApnsDelegate()
-
setApnsDelegate
public void setApnsDelegate(com.notnoop.apns.ApnsDelegate apnsDelegate)
-
getApnsService
public com.notnoop.apns.ApnsService getApnsService()
-
configureServiceBuilder
protected com.notnoop.apns.ApnsServiceBuilder configureServiceBuilder(com.notnoop.apns.ApnsServiceBuilder serviceBuilder)
-
-