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

org.gpel.client.GcWebResource Maven / Gradle / Ivy

Go to download

Grid BPEL Engine Client developed by Extreme Computing Lab, Indiana University

The newest version!
/* -*- 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: GcWebResource.java,v 1.8 2006/12/07 04:55:28 aslom Exp $ */
package org.gpel.client;

import java.net.URI;
import org.xmlpull.infoset.XmlElement;
import org.xmlpull.infoset.view.TypedXmlElementView;
import org.xmlpull.infoset.XmlNamespace;

public interface GcWebResource {
    public URI getId();
    public URI getLocation();
    public void setLocation(URI location);
    public String getMimeType();
    public void setMimeType(String contentType);
    public String getRel();
    public void setRel(String rel);
    public String getTitle() throws GcException ;
    public void setTitle(String tile) throws GcException;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy