UrlSetEntry.java
1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package fi.insomnia.bortal.verkkomaksutfi;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@XmlAccessorType(XmlAccessType.FIELD)
public class UrlSetEntry {
public UrlSetEntry()
{
}
public UrlSetEntry(String url) {
success = url + "/success.jsf";
failure = url + "/failure.jsf";
pending = url + "/pending.jsf";
notification = url + "/notification.jsf";
}
private String success;
private String failure;
private String pending;
private String notification;
public String getSuccess() {
return success;
}
public void setSuccess(String success) {
this.success = success;
}
public String getFailure() {
return failure;
}
public void setFailure(String failure) {
this.failure = failure;
}
public String getPending() {
return pending;
}
public void setPending(String pending) {
this.pending = pending;
}
public String getNotification() {
return notification;
}
public void setNotification(String notification) {
this.notification = notification;
}
}