01: package com.technoetic.xplanner.soap.domain;
02:
03: import com.technoetic.xplanner.domain.Feature;
04:
05: public class FeatureData extends DomainData {
06: private int storyId;
07: private String name;
08: private String description;
09:
10: public void setStoryId(int storyId) {
11: this .storyId = storyId;
12: }
13:
14: public int getStoryId() {
15: return storyId;
16: }
17:
18: public void setName(String name) {
19: this .name = name;
20: }
21:
22: public String getName() {
23: return name;
24: }
25:
26: public void setDescription(String description) {
27: this .description = description;
28: }
29:
30: public String getDescription() {
31: return description;
32: }
33:
34: public static Class getInternalClass() {
35: return Feature.class;
36: }
37: }
|