01: package org.ztemplates.test.actions.urlhandler.match.test2;
02:
03: import org.ztemplates.actions.ZMatch;
04:
05: /**
06: */
07: @ZMatch("nested2/${value}")
08: public class NestedHandler2 extends NestedHandler {
09: private String value;
10:
11: public String getValue() {
12: return value;
13: }
14:
15: public void setValue(String value) {
16: this.value = value;
17: }
18: }
|