BrightSide Workbench Full Report + Source Code
org.turro.contacts.stub.ContactServiceStub Class Reference
Inheritance diagram for org.turro.contacts.stub.ContactServiceStub:
Collaboration diagram for org.turro.contacts.stub.ContactServiceStub:

Public Member Functions

 ContactServiceStub (ContactService contactService)
 
String getId ()
 
void setId (String id)
 
String getTitle ()
 
void setTitle (String title)
 
ContactServiceRole getRole ()
 
void setRole (ContactServiceRole role)
 
String getType ()
 
void setType (String type)
 
String getThematic ()
 
void setThematic (String thematic)
 
Date getCreation ()
 
void setCreation (Date creation)
 
Date getStartDate ()
 
void setStartDate (Date startDate)
 
Date getEndDate ()
 
void setEndDate (Date endDate)
 
String getWiki ()
 
void setWiki (String wiki)
 
ContactStubmin getContact ()
 
void setContact (ContactStubmin contact)
 
ContactStubmin getResponsible ()
 
void setResponsible (ContactStubmin responsible)
 
int getTimesSent ()
 
void setTimesSent (int timesSent)
 
double getPrice ()
 
void setPrice (double price)
 
double getTax ()
 
void setTax (double tax)
 
Periodicity getPeriodicity ()
 
void setPeriodicity (Periodicity periodicity)
 
String getRelatedURL ()
 
void setRelatedURL (String relatedURL)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 31 of file ContactServiceStub.java.

Constructor & Destructor Documentation

◆ ContactServiceStub()

org.turro.contacts.stub.ContactServiceStub.ContactServiceStub ( ContactService  contactService)

Definition at line 47 of file ContactServiceStub.java.

47  {
48  silentlyInitializeValues(contactService);
49  }

Member Function Documentation

◆ getContact()

ContactStubmin org.turro.contacts.stub.ContactServiceStub.getContact ( )

Definition at line 123 of file ContactServiceStub.java.

123  {
124  return contact;
125  }

◆ getCreation()

Date org.turro.contacts.stub.ContactServiceStub.getCreation ( )

Definition at line 91 of file ContactServiceStub.java.

91  {
92  return creation;
93  }

◆ getEndDate()

Date org.turro.contacts.stub.ContactServiceStub.getEndDate ( )

Definition at line 107 of file ContactServiceStub.java.

107  {
108  return endDate;
109  }

◆ getId()

String org.turro.contacts.stub.ContactServiceStub.getId ( )

Definition at line 51 of file ContactServiceStub.java.

51  {
52  return id;
53  }

◆ getPeriodicity()

Periodicity org.turro.contacts.stub.ContactServiceStub.getPeriodicity ( )

Definition at line 163 of file ContactServiceStub.java.

163  {
164  return periodicity;
165  }

◆ getPrice()

double org.turro.contacts.stub.ContactServiceStub.getPrice ( )

Definition at line 147 of file ContactServiceStub.java.

147  {
148  return price;
149  }

◆ getRelatedURL()

String org.turro.contacts.stub.ContactServiceStub.getRelatedURL ( )

Definition at line 171 of file ContactServiceStub.java.

171  {
172  return relatedURL;
173  }

◆ getResponsible()

ContactStubmin org.turro.contacts.stub.ContactServiceStub.getResponsible ( )

Definition at line 131 of file ContactServiceStub.java.

131  {
132  return responsible;
133  }

◆ getRole()

ContactServiceRole org.turro.contacts.stub.ContactServiceStub.getRole ( )

Definition at line 67 of file ContactServiceStub.java.

67  {
68  return role;
69  }

◆ getStartDate()

Date org.turro.contacts.stub.ContactServiceStub.getStartDate ( )

Definition at line 99 of file ContactServiceStub.java.

99  {
100  return startDate;
101  }

◆ getTax()

double org.turro.contacts.stub.ContactServiceStub.getTax ( )

Definition at line 155 of file ContactServiceStub.java.

155  {
156  return tax;
157  }

◆ getThematic()

String org.turro.contacts.stub.ContactServiceStub.getThematic ( )

Definition at line 83 of file ContactServiceStub.java.

83  {
84  return thematic;
85  }

◆ getTimesSent()

int org.turro.contacts.stub.ContactServiceStub.getTimesSent ( )

Definition at line 139 of file ContactServiceStub.java.

139  {
140  return timesSent;
141  }

◆ getTitle()

String org.turro.contacts.stub.ContactServiceStub.getTitle ( )

Definition at line 59 of file ContactServiceStub.java.

59  {
60  return title;
61  }

◆ getType()

String org.turro.contacts.stub.ContactServiceStub.getType ( )

Definition at line 75 of file ContactServiceStub.java.

75  {
76  return type;
77  }

◆ getWiki()

String org.turro.contacts.stub.ContactServiceStub.getWiki ( )

Definition at line 115 of file ContactServiceStub.java.

115  {
116  return wiki;
117  }

◆ setContact()

void org.turro.contacts.stub.ContactServiceStub.setContact ( ContactStubmin  contact)

Definition at line 127 of file ContactServiceStub.java.

127  {
128  this.contact = contact;
129  }

◆ setCreation()

void org.turro.contacts.stub.ContactServiceStub.setCreation ( Date  creation)

Definition at line 95 of file ContactServiceStub.java.

95  {
96  this.creation = creation;
97  }

◆ setEndDate()

void org.turro.contacts.stub.ContactServiceStub.setEndDate ( Date  endDate)

Definition at line 111 of file ContactServiceStub.java.

111  {
112  this.endDate = endDate;
113  }

◆ setId()

void org.turro.contacts.stub.ContactServiceStub.setId ( String  id)

Definition at line 55 of file ContactServiceStub.java.

55  {
56  this.id = id;
57  }

◆ setPeriodicity()

void org.turro.contacts.stub.ContactServiceStub.setPeriodicity ( Periodicity  periodicity)

Definition at line 167 of file ContactServiceStub.java.

167  {
168  this.periodicity = periodicity;
169  }

◆ setPrice()

void org.turro.contacts.stub.ContactServiceStub.setPrice ( double  price)

Definition at line 151 of file ContactServiceStub.java.

151  {
152  this.price = price;
153  }

◆ setRelatedURL()

void org.turro.contacts.stub.ContactServiceStub.setRelatedURL ( String  relatedURL)

Definition at line 175 of file ContactServiceStub.java.

175  {
176  this.relatedURL = relatedURL;
177  }

◆ setResponsible()

void org.turro.contacts.stub.ContactServiceStub.setResponsible ( ContactStubmin  responsible)

Definition at line 135 of file ContactServiceStub.java.

135  {
136  this.responsible = responsible;
137  }

◆ setRole()

void org.turro.contacts.stub.ContactServiceStub.setRole ( ContactServiceRole  role)

Definition at line 71 of file ContactServiceStub.java.

71  {
72  this.role = role;
73  }

◆ setStartDate()

void org.turro.contacts.stub.ContactServiceStub.setStartDate ( Date  startDate)

Definition at line 103 of file ContactServiceStub.java.

103  {
104  this.startDate = startDate;
105  }

◆ setTax()

void org.turro.contacts.stub.ContactServiceStub.setTax ( double  tax)

Definition at line 159 of file ContactServiceStub.java.

159  {
160  this.tax = tax;
161  }

◆ setThematic()

void org.turro.contacts.stub.ContactServiceStub.setThematic ( String  thematic)

Definition at line 87 of file ContactServiceStub.java.

87  {
88  this.thematic = thematic;
89  }

◆ setTimesSent()

void org.turro.contacts.stub.ContactServiceStub.setTimesSent ( int  timesSent)

Definition at line 143 of file ContactServiceStub.java.

143  {
144  this.timesSent = timesSent;
145  }

◆ setTitle()

void org.turro.contacts.stub.ContactServiceStub.setTitle ( String  title)

Definition at line 63 of file ContactServiceStub.java.

63  {
64  this.title = title;
65  }

◆ setType()

void org.turro.contacts.stub.ContactServiceStub.setType ( String  type)

Definition at line 79 of file ContactServiceStub.java.

79  {
80  this.type = type;
81  }

◆ setWiki()

void org.turro.contacts.stub.ContactServiceStub.setWiki ( String  wiki)

Definition at line 119 of file ContactServiceStub.java.

119  {
120  this.wiki = wiki;
121  }

The documentation for this class was generated from the following file: