1 16 17 package org.apache.wsdl.impl; 18 19 import org.apache.wsdl.WSDLExtensibilityAttribute; 20 21 import javax.xml.namespace.QName ; 22 23 27 public class WSDLExtensibilityAttributeImpl implements WSDLExtensibilityAttribute { 28 29 private QName key; 30 31 private QName value; 32 33 34 35 public WSDLExtensibilityAttributeImpl() { 36 37 } 38 public QName getKey() { 39 return key; 40 } 41 public QName getValue() { 42 return value; 43 } 44 45 46 public void setKey(QName key) { 47 this.key = key; 48 } 49 public void setValue(QName value) { 50 this.value = value; 51 } 52 } 53 | Popular Tags |