1
2 package org.miloss.fgsms.services.interfaces.dataaccessservice;
3
4 import java.io.Serializable;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "dependencies", propOrder = {
33 "url",
34 "action"
35 })
36 public class Dependencies
37 implements Serializable
38 {
39
40 private final static long serialVersionUID = 1L;
41 @XmlElement(required = true)
42 protected String url;
43 @XmlElement(required = true)
44 protected String action;
45
46
47
48
49
50
51
52
53
54 public String getUrl() {
55 return url;
56 }
57
58
59
60
61
62
63
64
65
66 public void setUrl(String value) {
67 this.url = value;
68 }
69
70 public boolean isSetUrl() {
71 return (this.url!= null);
72 }
73
74
75
76
77
78
79
80
81
82 public String getAction() {
83 return action;
84 }
85
86
87
88
89
90
91
92
93
94 public void setAction(String value) {
95 this.action = value;
96 }
97
98 public boolean isSetAction() {
99 return (this.action!= null);
100 }
101
102 }