org.gpel.client.http.GcHttpTransport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gpel-client Show documentation
Show all versions of gpel-client Show documentation
Grid BPEL Engine Client developed by Extreme Computing Lab, Indiana University
The newest version!
package org.gpel.client.http;/* -*- mode: Java; c-basic-offset: 4; indent-tabs-mode: nil; -*- //------100-columns-wide------>|*/
/* Copyright (c) 2005 Extreme! Lab, Indiana University. All rights reserved.
* This software is open source. See the bottom of this file for the license.
* $Id: GcHttpTransport.java,v 1.3 2006/12/07 04:55:30 aslom Exp $ */
import java.net.URI;
import org.gpel.client.http.GcHttpException;
import org.gpel.client.http.GcHttpRequest;
import org.gpel.client.http.GcHttpResponse;
import org.xmlpull.infoset.XmlElement;
import org.gpel.client.GpelUserCredentials;
public interface GcHttpTransport {
public XmlElement getXml(URI location) throws GcHttpException;
public XmlElement getXml(URI location, boolean secure) throws GcHttpException;
//public GcHttpResponse postXml(URI location, XmlElement el) throws GcHttpException;
public GcHttpResponse perform(GcHttpRequest req) throws GcHttpException;
//public void setCredentials(GpelUserCredentials credentials);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy