com.alogient.cameleon.sdk.community.interspire.request.IRequest Maven / Gradle / Ivy
The newest version!
package com.alogient.cameleon.sdk.community.interspire.request;
import com.alogient.cameleon.sdk.community.interspire.jaxb.XmlRequest;
import com.alogient.cameleon.sdk.community.interspire.response.IResponse;
/**
* This interface must be implements by all request classes
* @author jmirc
*/
public interface IRequest {
/**
* @return the XML request
*/
public XmlRequest getXmlRequest();
/**
* Send the request
* @return the response
* @throws Exception an exception
*/
public IResponse sendRequest() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy