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: package com.tctest.spring.aj;
05:
06: import java.io.Serializable;
07:
08: import org.springframework.beans.factory.annotation.Configurable;
09:
10: @Configurable
11: public class ConfigurableBean implements Serializable {
12: private static final long serialVersionUID = 1L;
13:
14: private String property1;
15: private String property2;
16:
17: public ConfigurableBean() {
18: }
19:
20: public String getProperty1() {
21: return this .property1;
22: }
23:
24: public String getProperty2() {
25: return this .property2;
26: }
27:
28: public void setProperty1(String property1) {
29: this .property1 = property1;
30: }
31:
32: public void setProperty2(String property2) {
33: this.property2 = property2;
34: }
35:
36: }
|