1 package org.codehaus.xfire.services; 2 3 /*** 4 * SomeBean 5 * 6 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> 7 */ 8 public class SimpleBean 9 { 10 private String bleh; 11 12 private String howdy; 13 14 public String getBleh() 15 { 16 return bleh; 17 } 18 19 public void setBleh(String bleh) 20 { 21 this.bleh = bleh; 22 } 23 24 public String getHowdy() 25 { 26 return howdy; 27 } 28 29 public void setHowdy(String howdy) 30 { 31 this.howdy = howdy; 32 } 33 }