All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.xml.ws.handler.MessageContext Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

The newest version!
package com.genexus.xml.ws.handler;

import com.genexus.xml.ws.WebServiceContext;

public class MessageContext {
	jakarta.xml.ws.handler.MessageContext messageContext;

	public MessageContext(WebServiceContext webServiceContext) {
		this.messageContext = webServiceContext.getMessageContext();
	}

	public Object get(Object key) {
		return messageContext.get(key);
	}

	public String getSERVLET_REQUEST(){
		return jakarta.xml.ws.handler.MessageContext.SERVLET_REQUEST;
	}

	public String getSERVLET_RESPONSE(){
		return jakarta.xml.ws.handler.MessageContext.SERVLET_RESPONSE;
	}

	public String getSERVLET_CONTEXT(){
		return jakarta.xml.ws.handler.MessageContext.SERVLET_CONTEXT;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy