1 6 package org.jboss.test.webservice.jbws718; 7 8 9 public class ListChildren { 10 protected java.lang.String item; 11 protected boolean recursive; 12 13 public ListChildren() { 14 } 15 16 public ListChildren(java.lang.String item, boolean recursive) { 17 this.item = item; 18 this.recursive = recursive; 19 } 20 21 public java.lang.String getItem() { 22 return item; 23 } 24 25 public void setItem(java.lang.String item) { 26 this.item = item; 27 } 28 29 public boolean isRecursive() { 30 return recursive; 31 } 32 33 public void setRecursive(boolean recursive) { 34 this.recursive = recursive; 35 } 36 } 37 | Popular Tags |