Coverage Report - org.deri.wsmo4j.choreography.signature.WSDLGroundingRI
 
Classes in this File Line Coverage Branch Coverage Complexity
WSDLGroundingRI
0%
0/7
N/A
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.deri.wsmo4j.choreography.signature;
 20  
 
 21  
 import org.wsmo.common.IRI;
 22  
 import org.wsmo.service.signature.*;
 23  
 
 24  
 /**
 25  
  * Reference Implementation for the WSDL grounding
 26  
  * 
 27  
  * @author James Scicluna
 28  
  * @author Thomas Haselwanter
 29  
  * 
 30  
  * Created on 26-Sep-2005 Committed by $Author: vassil_momtchev $
 31  
  * 
 32  
  * $Source:
 33  
  * /cvsroot/wsmo4j/ext/choreography/src/ri/org/deri/wsmo4j/choreography/signature/WSDLGroundingRI.java,v $,
 34  
  * @version $Revision: 1844 $ $Date: 2006-10-24 17:11:48 +0300 (Tue, 24 Oct 2006) $
 35  
  */
 36  
 
 37  
 public class WSDLGroundingRI implements WSDLGrounding {
 38  
 
 39  
     private IRI iri;
 40  
 
 41  
     /**
 42  
      * Initiates the WSDLGrounding object
 43  
      */
 44  
     public WSDLGroundingRI() {
 45  0
         super();
 46  
         // TODO Auto-generated constructor stub
 47  0
     }
 48  
 
 49  
     /**
 50  
      * Initiates the WSDLGrounding object using the specified IRI
 51  
      * 
 52  
      * @param iri
 53  
      *            IRI object defining the grounding reference
 54  
      */
 55  0
     public WSDLGroundingRI(IRI iri) {
 56  0
         this.iri = iri;
 57  0
     }
 58  
 
 59  
     /*
 60  
      * (non-Javadoc)
 61  
      * 
 62  
      * @see org.wsmo.service.choreography.signature.WSDLGrounding#getIRI()
 63  
      */
 64  
     public IRI getIRI() {
 65  0
         return this.iri;
 66  
     }
 67  
 
 68  
     /* (non-Javadoc)
 69  
      * @see org.wsmo.service.choreography.signature.WSDLGrounding#setIRI(org.wsmo.common.IRI)
 70  
      */
 71  
     public void setIRI(IRI iri) {
 72  
         // TODO Auto-generated method stub
 73  
         
 74  0
     }
 75  
 
 76  
 }