1 16 package org.apache.wsdl.impl; 17 18 import org.apache.wsdl.WSDLProperty; 19 20 23 public class WDSLPropertyImpl extends ComponentImpl implements WSDLProperty { 24 27 private String uri; 28 29 31 34 private Object constraint; 35 36 38 41 private Object value; 42 43 48 public Object getConstraint() { 49 return constraint; 50 } 51 52 57 public void setConstraint(Object constraint) { 58 this.constraint = constraint; 59 } 60 61 66 public String getName() { 67 return uri; 68 } 69 70 75 public void setName(String uri) { 76 this.uri = uri; 77 } 78 79 84 public Object getValue() { 85 return value; 86 } 87 88 93 public void setValue(Object value) { 94 this.value = value; 95 } 96 } 97 | Popular Tags |