|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| WebServicePortType.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 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.config.ws; | |
| 8 | ||
| 9 | import java.io.Serializable; | |
| 10 | ||
| 11 | /** | |
| 12 | * This class is the object-oriented representation of the <code>portType</code> | |
| 13 | * element that can be found in the <code>jtr.xml</code> configuration file.<br> | |
| 14 | * Semantically it is comparable to a WSDL port type definition, and is one of the | |
| 15 | * information used by the JTR runtime system to access webservices. | |
| 16 | * | |
| 17 | * @author Francesco Russo (frusso@dev.java.net) | |
| 18 | * @version 4.0 | |
| 19 | * @since 3.0 | |
| 20 | */ | |
| 21 | public class WebServicePortType implements Serializable { | |
| 22 | /** | |
| 23 | * Default constructor. | |
| 24 | */ | |
| 25 | 0 | public WebServicePortType() { |
| 26 | } | |
| 27 | ||
| 28 | /** | |
| 29 | * Get this port type name. | |
| 30 | * @return String The port type name | |
| 31 | */ | |
| 32 | 0 | public String getName() { |
| 33 | 0 | return name; |
| 34 | } | |
| 35 | ||
| 36 | /** | |
| 37 | * Set the name space. | |
| 38 | * @param nameSpace | |
| 39 | */ | |
| 40 | 0 | public void setNameSpace(String nameSpace) { |
| 41 | 0 | this.nameSpace = nameSpace; |
| 42 | } | |
| 43 | ||
| 44 | /** | |
| 45 | * Get the port type name. | |
| 46 | * @param name | |
| 47 | */ | |
| 48 | 0 | public void setName(String name) { |
| 49 | 0 | this.name = name; |
| 50 | } | |
| 51 | ||
| 52 | /** | |
| 53 | * Get the name space of the port type. | |
| 54 | * @return String | |
| 55 | */ | |
| 56 | 0 | public String getNameSpace() { |
| 57 | 0 | return nameSpace; |
| 58 | } | |
| 59 | ||
| 60 | private String nameSpace; | |
| 61 | ||
| 62 | private String name; | |
| 63 | } |
|
||||||||||