| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| WSDLGrounding |
|
| 1.0;1 |
| 1 | /* | |
| 2 | wsmo4j extension - a Choreography API and Reference Implementation | |
| 3 | ||
| 4 | Copyright (c) 2005, University of Innsbruck, Austria | |
| 5 | ||
| 6 | This library is free software; you can redistribute it and/or modify it under | |
| 7 | the terms of the GNU Lesser General Public License as published by the Free | |
| 8 | Software Foundation; either version 2.1 of the License, or (at your option) | |
| 9 | any later version. | |
| 10 | This library is distributed in the hope that it will be useful, but WITHOUT | |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | |
| 12 | FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more | |
| 13 | details. | |
| 14 | You should have received a copy of the GNU Lesser General Public License along | |
| 15 | with this library; if not, write to the Free Software Foundation, Inc., | |
| 16 | 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 17 | */ | |
| 18 | ||
| 19 | package org.wsmo.service.signature; | |
| 20 | ||
| 21 | import org.wsmo.common.IRI; | |
| 22 | ||
| 23 | /** | |
| 24 | * WSDL Grounding is a subclass of Grounding and defines methods for getting | |
| 25 | * information about the wsdl grounding for a concept. | |
| 26 | * | |
| 27 | * <pre> | |
| 28 | * Created on Jul 26, 2005 | |
| 29 | * Committed by $Author: vassil_momtchev $ | |
| 30 | * $Source$ | |
| 31 | * </pre> | |
| 32 | * | |
| 33 | * @author James Scicluna | |
| 34 | * @author Thomas Haselwanter | |
| 35 | * @author Holger Lausen | |
| 36 | * | |
| 37 | * @version $Revision: 1849 $ $Date: 2006-10-24 17:56:41 +0300 (Tue, 24 Oct 2006) $ | |
| 38 | */ | |
| 39 | public interface WSDLGrounding extends Grounding { | |
| 40 | ||
| 41 | /** | |
| 42 | * Returns an IRI pointing to the input/ouput parameter of some WSDL | |
| 43 | * operation | |
| 44 | * | |
| 45 | * @return An IRI object defining the grounding information | |
| 46 | */ | |
| 47 | public IRI getIRI(); | |
| 48 | ||
| 49 | /** | |
| 50 | * Sets the grounding IRI | |
| 51 | * | |
| 52 | * @param iri An IRI object which defines the grounding | |
| 53 | */ | |
| 54 | public void setIRI(IRI iri); | |
| 55 | ||
| 56 | } |