The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
import java.io.*;

public class SomeBean implements Serializable {

	private String value;

	public SomeBean() {
	}

	public void setValue ( String _value ) {
		value = _value;
	}

	public String getValue ( ) {
		return value;
	}

}