01: /*
02: * soapUI, copyright (C) 2004-2007 eviware.com
03: *
04: * soapUI is free software; you can redistribute it and/or modify it under the
05: * terms of version 2.1 of the GNU Lesser General Public License as published by
06: * the Free Software Foundation.
07: *
08: * soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
09: * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: * See the GNU Lesser General Public License for more details at gnu.org.
11: */
12:
13: package com.eviware.soapui.impl.wsdl;
14:
15: import javax.xml.namespace.QName;
16:
17: import org.apache.xmlbeans.SchemaType;
18:
19: import com.eviware.soapui.model.iface.MessagePart;
20:
21: /**
22: * Descriptor for a Message/SOAP Header
23: *
24: * @author ole.matzura
25: */
26:
27: public class WsdlHeaderPart extends MessagePart.HeaderPart {
28: private String name;
29: private SchemaType schemaType;
30: private QName partElement;
31:
32: public WsdlHeaderPart(String name, SchemaType schemaType,
33: QName partElement) {
34: super ();
35:
36: this .name = name;
37: this .schemaType = schemaType;
38: this .partElement = partElement;
39: }
40:
41: public SchemaType getSchemaType() {
42: return schemaType;
43: }
44:
45: public String getDescription() {
46: return name + " of type [" + schemaType.getName() + "]";
47: }
48:
49: public String getName() {
50: return name;
51: }
52:
53: public QName getPartElement() {
54: return partElement;
55: }
56: }
|