01: package org.objectweb.salome_tmf.api.data;
02:
03: public class ExecutionAttachmentWrapper {
04: ExecutionWrapper execution;
05: TestCampWrapper testCamp;
06: FileAttachementWrapper fileAttachment;
07: UrlAttachementWrapper urlAttachment;
08:
09: public ExecutionWrapper getExecution() {
10: return execution;
11: }
12:
13: public void setExecution(ExecutionWrapper execution) {
14: this .execution = execution;
15: }
16:
17: public FileAttachementWrapper getFileAttachment() {
18: return fileAttachment;
19: }
20:
21: public void setFileAttachment(FileAttachementWrapper fileAttachment) {
22: this .fileAttachment = fileAttachment;
23: }
24:
25: public TestCampWrapper getTestCamp() {
26: return testCamp;
27: }
28:
29: public void setTestCamp(TestCampWrapper testCamp) {
30: this .testCamp = testCamp;
31: }
32:
33: public UrlAttachementWrapper getUrlAttachment() {
34: return urlAttachment;
35: }
36:
37: public void setUrlAttachment(UrlAttachementWrapper urlAttachment) {
38: this.urlAttachment = urlAttachment;
39: }
40: }
|