1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.juddi.subscription.notify;
17
18 import org.apache.juddi.model.Publisher;
19 import org.apache.juddi.model.Subscription;
20
21
22
23
24
25 public class TemporaryMailContainer {
26
27 public TemporaryMailContainer(Subscription obj, Publisher publisher, Publisher deletedBy) {
28
29 this.obj=obj;
30 this.publisher = publisher;
31 this.deletedBy=deletedBy;
32 }
33 private Subscription obj;
34 private Publisher publisher;
35 private Publisher deletedBy;
36
37
38 public Subscription getObj() {
39 return obj;
40 }
41
42 public void setObj(Subscription obj) {
43 this.obj = obj;
44 }
45
46 public Publisher getPublisher() {
47 return publisher;
48 }
49
50 public void setPublisher(Publisher publisher) {
51 this.publisher = publisher;
52 }
53
54 public Publisher getDeletedBy() {
55 return deletedBy;
56 }
57
58 public void setDeletedBy(Publisher deletedBy) {
59 this.deletedBy = deletedBy;
60 }
61 }