KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas_ws > wsgen > generator > axis > VcHeader


1 /**
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * Initial developer(s): Xavier Delplanque
22  * --------------------------------------------------------------------------
23  * $Id: VcHeader.java,v 1.3 2004/04/19 13:49:54 sauthieg Exp $
24  * --------------------------------------------------------------------------
25  */

26
27 package org.objectweb.jonas_ws.wsgen.generator.axis;
28
29 import javax.xml.namespace.QName JavaDoc;
30
31 /**
32  * Member of a VelocityContext. Contains information about a SOAP Header
33  * (basically a qName).
34  *
35  * @author Xavier Delplanque
36  */

37 public class VcHeader {
38
39     /** LocalPart of the QName */
40     private String JavaDoc qname;
41
42     /** NamespaceURI of the QName */
43     private String JavaDoc namespace;
44
45     /**
46      * Construct a VcHeader from a QName.
47      *
48      * @param qn the Header QName
49      */

50     public VcHeader(QName JavaDoc qn) {
51
52         // set qname
53
qname = qn.getLocalPart();
54
55         // set namespace
56
namespace = qn.getNamespaceURI();
57     }
58
59     /**
60      * @return Returns the Header localpart
61      */

62     public String JavaDoc getQName() {
63         return qname;
64     }
65
66     /**
67      * @return Returns the Header namespace URI
68      */

69     public String JavaDoc getNamespace() {
70         return namespace;
71     }
72 }
Popular Tags