01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04:
05: package com.tctest.spring.bean;
06:
07: public class ScopedBean {
08: private String value = "Jonas";
09:
10: public String getValue() {
11: return value;
12: }
13:
14: public void setValue(String value) {
15: this.value = value;
16: }
17:
18: }
|