|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| WebServiceRtPortType.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.ws.wsif; | |
| 8 | ||
| 9 | import javax.xml.namespace.QName; | |
| 10 | ||
| 11 | /** | |
| 12 | * This class is the WSIF-based runtime representation of a <code>portType</code>. | |
| 13 | * | |
| 14 | * @author Francesco Russo (frusso@dev.java.net) | |
| 15 | * @version 4.0 | |
| 16 | * @since 3.0 | |
| 17 | */ | |
| 18 | public class WebServiceRtPortType { | |
| 19 | /** | |
| 20 | * Default constructor. | |
| 21 | */ | |
| 22 | 0 | public WebServiceRtPortType() { |
| 23 | } | |
| 24 | ||
| 25 | /** | |
| 26 | * Get the <code>portType</code>'s qualified name | |
| 27 | * @return QName Returns the qualifiedName. | |
| 28 | */ | |
| 29 | 0 | public QName getQualifiedName() { |
| 30 | 0 | return qualifiedName; |
| 31 | } | |
| 32 | ||
| 33 | /** | |
| 34 | * Set the <code>portType</code>'s qualified name | |
| 35 | * @param qualifiedName | |
| 36 | * The qualifiedName to set. | |
| 37 | */ | |
| 38 | 0 | public void setQualifiedName(QName qualifiedName) { |
| 39 | 0 | this.qualifiedName = qualifiedName; |
| 40 | } | |
| 41 | ||
| 42 | private QName qualifiedName; | |
| 43 | } |
|
||||||||||