Uses of Class
org.apache.axis2.context.ConfigurationContext

Packages that use ConfigurationContext
org.apache.axis2.client   
org.apache.axis2.context   
org.apache.axis2.engine   
org.apache.axis2.modules   
org.apache.axis2.rpc.client   
org.apache.axis2.security   
org.apache.axis2.transport   
org.apache.axis2.transport.http   
org.apache.axis2.transport.jms   
org.apache.axis2.transport.local   
org.apache.axis2.transport.mail   
org.apache.axis2.transport.mail.server   
org.apache.axis2.transport.tcp   
org.apache.axis2.util   
 

Uses of ConfigurationContext in org.apache.axis2.client
 

Constructors in org.apache.axis2.client with parameters of type ConfigurationContext
WSDLBasedServiceConfigurationBuilder(org.apache.wsdl.WSDLDescription wsdlDesc, ConfigurationContext configctx)
           
WSDLBasedPolicyProcessor(ConfigurationContext configctx)
           
ServiceClient(ConfigurationContext configContext, AxisService axisService)
          Create a service client configured to work with a specific AxisService.
ServiceClient(ConfigurationContext configContext, org.apache.wsdl.WSDLDescription wsdldesc, QName wsdlServiceName, String portName)
          This is WOM based constructor to configure the Service Client/ We are going to make this policy aware
ServiceClient(ConfigurationContext configContext, URL wsdlURL, QName wsdlServiceName, String portName)
          Create a service client for WSDL service identified by the QName of the wsdl:service element in a WSDL document.
 

Uses of ConfigurationContext in org.apache.axis2.context
 

Methods in org.apache.axis2.context that return ConfigurationContext
static ConfigurationContext ConfigurationContextFactory.createConfigurationContext(AxisConfigurator axisConfigurator)
          Creates a AxisConfiguration depending on the user requirment.
static ConfigurationContext ConfigurationContextFactory.createConfigurationContextFromFileSystem(String path, String axis2xml)
          To get a ConfigurationContext for given data , and underline implementation is Axis2 default impl which is file system based deployment model to create an AxisConfiguration.
static ConfigurationContext ConfigurationContextFactory.createEmptyConfigurationContext()
          Gets the default configuration context by using the file system based AxisConfiguration.
 ConfigurationContext ServiceContext.getConfigurationContext()
           
 ConfigurationContext OperationContext.getEngineContext()
          Returns the EngineContext in which the parent ServiceContext lives.
 ConfigurationContext MessageContext.getConfigurationContext()
           
 

Methods in org.apache.axis2.context with parameters of type ConfigurationContext
static void ConfigurationContextFactory.initTransportSenders(ConfigurationContext configContext)
          Initializes TransportSenders and TransportListeners with appropriate configuration information
 void MessageContext.setConfigurationContext(ConfigurationContext context)
           
 

Constructors in org.apache.axis2.context with parameters of type ConfigurationContext
ServiceGroupContext(ConfigurationContext parent, AxisServiceGroup axisServiceGroup)
           
 

Uses of ConfigurationContext in org.apache.axis2.engine
 

Methods in org.apache.axis2.engine that return ConfigurationContext
 ConfigurationContext ListenerManager.getConfigctx()
           
 

Methods in org.apache.axis2.engine with parameters of type ConfigurationContext
 void ListenerManager.init(ConfigurationContext configCtx)
           
 void ListenerManager.startSystem(ConfigurationContext configurationContext)
           
 

Constructors in org.apache.axis2.engine with parameters of type ConfigurationContext
AxisEngine(ConfigurationContext engineContext)
          Constructor AxisEngine
 

Uses of ConfigurationContext in org.apache.axis2.modules
 

Methods in org.apache.axis2.modules with parameters of type ConfigurationContext
 void Module.init(ConfigurationContext configContext, AxisModule module)
           
 

Uses of ConfigurationContext in org.apache.axis2.rpc.client
 

Constructors in org.apache.axis2.rpc.client with parameters of type ConfigurationContext
RPCServiceClient(ConfigurationContext configContext, AxisService service)
           
RPCServiceClient(ConfigurationContext configContext, URL wsdlURL, QName wsdlServiceName, String portName)
           
 

Uses of ConfigurationContext in org.apache.axis2.security
 

Methods in org.apache.axis2.security with parameters of type ConfigurationContext
 void SecurityModule.init(ConfigurationContext configContext, AxisModule module)
           
 

Uses of ConfigurationContext in org.apache.axis2.transport
 

Methods in org.apache.axis2.transport with parameters of type ConfigurationContext
 void AbstractTransportSender.init(ConfigurationContext confContext, TransportOutDescription transportOut)
           
 void TransportSender.init(ConfigurationContext confContext, TransportOutDescription transportOut)
          Initialize
 void TransportListener.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
           
 

Uses of ConfigurationContext in org.apache.axis2.transport.http
 

Fields in org.apache.axis2.transport.http declared as ConfigurationContext
protected  ConfigurationContext AxisServlet.configContext
           
protected  ConfigurationContext SimpleHTTPServer.configurationContext
          Field systemContext
 

Methods in org.apache.axis2.transport.http that return ConfigurationContext
protected  ConfigurationContext AxisServlet.initConfigContext(ServletConfig config)
          Initialize the Axis configuration context
 ConfigurationContext SimpleHTTPServer.getConfigurationContext()
          Method getConfigurationContext
 

Methods in org.apache.axis2.transport.http with parameters of type ConfigurationContext
static org.apache.ws.commons.soap.SOAPEnvelope HTTPTransportUtils.createEnvelopeFromGetRequest(String requestUrl, Map map, ConfigurationContext configurationContext)
           
static boolean HTTPTransportUtils.processHTTPGetRequest(MessageContext msgContext, InputStream in, OutputStream out, String contentType, String soapAction, String requestURI, ConfigurationContext configurationContext, Map requestParameters)
           
 void AxisServlet.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
          To initilze as TransportListener , not as Servlet
static String HTTPTransportReceiver.getServicesHTML(ConfigurationContext configurationContext)
          Returns the HTML text for the list of services deployed.
static String HTTPTransportReceiver.printServiceHTML(String serviceName, ConfigurationContext configurationContext)
           
 void CommonsHTTPTransportSender.init(ConfigurationContext confContext, TransportOutDescription transportOut)
           
 void SimpleHTTPServer.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
          init method in TransportListener
 

Constructors in org.apache.axis2.transport.http with parameters of type ConfigurationContext
HTTPWorker(ConfigurationContext configurationContext)
           
ListingAgent(ConfigurationContext configContext)
           
SimpleHTTPServer(ConfigurationContext systemContext, int port)
           
SimpleHTTPServer(ConfigurationContext systemContext, int port, ThreadFactory pool)
          Constructor SimpleHTTPServer
 

Uses of ConfigurationContext in org.apache.axis2.transport.jms
 

Fields in org.apache.axis2.transport.jms declared as ConfigurationContext
protected  ConfigurationContext SimpleJMSListener.configurationContext
           
 

Methods in org.apache.axis2.transport.jms that return ConfigurationContext
 ConfigurationContext SimpleJMSListener.getConfigurationContext()
           
 

Methods in org.apache.axis2.transport.jms with parameters of type ConfigurationContext
 void JMSSender.init(ConfigurationContext confContext, TransportOutDescription transportOut)
           
 void SimpleJMSListener.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
           
 

Constructors in org.apache.axis2.transport.jms with parameters of type ConfigurationContext
SimpleJMSWorker(ConfigurationContext configurationContext, SimpleJMSListener listener, javax.jms.BytesMessage message)
           
 

Uses of ConfigurationContext in org.apache.axis2.transport.local
 

Fields in org.apache.axis2.transport.local declared as ConfigurationContext
static ConfigurationContext LocalTransportReceiver.CONFIG_CONTEXT
           
 

Constructors in org.apache.axis2.transport.local with parameters of type ConfigurationContext
LocalTransportReceiver(ConfigurationContext configContext)
           
 

Uses of ConfigurationContext in org.apache.axis2.transport.mail
 

Methods in org.apache.axis2.transport.mail with parameters of type ConfigurationContext
 void SimpleMailListener.init(ConfigurationContext configurationContext, TransportInDescription transportIn)
           
 

Constructors in org.apache.axis2.transport.mail with parameters of type ConfigurationContext
MailWorker(javax.mail.internet.MimeMessage mimeMessage, ConfigurationContext reg)
          Constructor for MailWorker
 

Uses of ConfigurationContext in org.apache.axis2.transport.mail.server
 

Fields in org.apache.axis2.transport.mail.server declared as ConfigurationContext
 ConfigurationContext MailServer.configurationContext
           
 

Methods in org.apache.axis2.transport.mail.server with parameters of type ConfigurationContext
 void MailSorter.processMail(ConfigurationContext confContext, javax.mail.internet.MimeMessage mimeMessage)
           
 

Constructors in org.apache.axis2.transport.mail.server with parameters of type ConfigurationContext
SMTPWorker(Socket socket, Storage st, ConfigurationContext configurationContext)
           
SMTPServer(Storage st, ConfigurationContext configurationContext, int port)
           
MailServer(ConfigurationContext configurationContext, int popPort, int smtpPort)
           
MailSorter(Storage st, ConfigurationContext configurationContext)
           
 

Uses of ConfigurationContext in org.apache.axis2.transport.tcp
 

Methods in org.apache.axis2.transport.tcp that return ConfigurationContext
 ConfigurationContext TCPServer.getConfigurationContext()
           
 

Methods in org.apache.axis2.transport.tcp with parameters of type ConfigurationContext
 void TCPServer.init(ConfigurationContext axisConf, TransportInDescription transprtIn)
           
 

Constructors in org.apache.axis2.transport.tcp with parameters of type ConfigurationContext
TCPServer(int port, ConfigurationContext configContext)
           
TCPWorker(ConfigurationContext configurationContext, Socket socket)
           
 

Uses of ConfigurationContext in org.apache.axis2.util
 

Methods in org.apache.axis2.util that return ConfigurationContext
static ConfigurationContext Utils.getNewConfigurationContext(String repositry)
           
 

Methods in org.apache.axis2.util with parameters of type ConfigurationContext
static ServiceContext Utils.fillContextInformation(AxisService axisService, ConfigurationContext configurationContext)