Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 119   Methods: 11
NCLOC: 41   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
WebServiceRtOperation.java - 0% 0% 0%
coverage
 1    /**
 2    * JTRunner is free software; you can redistribute it and/or modify it under the
 3    * terms of the GNU General Public License as published by the Free Software
 4    * Foundation; either version 2, or (at your option) any later version.
 5    */
 6   
 7    package jtr.ws.wsif;
 8   
 9    import org.apache.wsif.WSIFMessage;
 10    import org.apache.wsif.WSIFOperation;
 11   
 12    /**
 13    * This class is the WSIF-based runtime representation of a webservice operation.
 14    * @author Francesco Russo (frusso@dev.java.net)
 15    * @version 4.0
 16    * @since 3.0
 17    */
 18    public class WebServiceRtOperation {
 19    /**
 20    * Default constructor.
 21    */
 22  0 public WebServiceRtOperation() {
 23    }
 24   
 25    /**
 26    * Get the operation name.
 27    * @return String
 28    */
 29  0 public String getName() {
 30  0 return name;
 31    }
 32   
 33    /**
 34    * Set the operation name.
 35    * @param name
 36    * The name to set.
 37    */
 38  0 public void setName(String name) {
 39  0 this.name = name;
 40    }
 41   
 42    /**
 43    * Get the WSIF-based operation.
 44    * @return WSIFOperation
 45    */
 46  0 public WSIFOperation getOperation() {
 47  0 return operation;
 48    }
 49   
 50    /**
 51    * Set the WSIF-based operation
 52    * @param operation
 53    * The operation to set.
 54    */
 55  0 public void setOperation(WSIFOperation operation) {
 56  0 this.operation = operation;
 57    }
 58   
 59    /**
 60    * Get the WSIF-based fault message.
 61    * @return WSIFMessage
 62    */
 63  0 public WSIFMessage getFaultMsg() {
 64  0 return faultMsg;
 65    }
 66   
 67    /**
 68    * Set the WSIF-based fault message.
 69    * @param faultMsg
 70    * The faultMsg to set.
 71    */
 72  0 public void setFaultMsg(WSIFMessage faultMsg) {
 73  0 this.faultMsg = faultMsg;
 74    }
 75   
 76    /**
 77    * Get the WSIF-based input message.
 78    * @return WSIFMessage
 79    */
 80  0 public WSIFMessage getInputMsg() {
 81  0 return inputMsg;
 82    }
 83   
 84    /**
 85    * Set the WSIF-based input message.
 86    * @param inputMsg
 87    * The inputMsg to set.
 88    */
 89  0 public void setInputMsg(WSIFMessage inputMsg) {
 90  0 this.inputMsg = inputMsg;
 91    }
 92   
 93    /**
 94    * Get the WSIF-based output message.
 95    * @return WSIFMessage
 96    */
 97  0 public WSIFMessage getOutputMsg() {
 98  0 return outputMsg;
 99    }
 100   
 101    /**
 102    * Set the WSIF-based output message.
 103    * @param outputMsg
 104    * The outputMsg to set.
 105    */
 106  0 public void setOutputMsg(WSIFMessage outputMsg) {
 107  0 this.outputMsg = outputMsg;
 108    }
 109   
 110    private WSIFOperation operation;
 111   
 112    private String name;
 113   
 114    private WSIFMessage inputMsg;
 115   
 116    private WSIFMessage outputMsg;
 117   
 118    private WSIFMessage faultMsg;
 119    }