1 16 package org.apache.wsdl.impl; 17 18 import org.apache.wsdl.WSDLProperty; 19 20 23 public class WSDLPropertyImpl extends ComponentImpl implements WSDLProperty { 24 27 private Object constraint; 28 29 32 private String name; 33 34 37 private Object value; 38 39 44 public Object getConstraint() { 45 return constraint; 46 } 47 48 53 public void setConstraint(Object constraint) { 54 this.constraint = constraint; 55 } 56 57 62 public String getName() { 63 return name; 64 } 65 66 71 public void setName(String name) { 72 this.name = name; 73 } 74 75 80 public Object getValue() { 81 return value; 82 } 83 84 89 public void setValue(Object value) { 90 this.value = value; 91 } 92 } 93 | Popular Tags |