@@ -42,11 +42,11 @@ public HSGear() {
42
42
43
43
/**
44
44
*
45
- * @param cancelTag
46
- * @param section
47
- * @param queue
48
- * @param success
49
- * @param errorListener
45
+ * @param cancelTag Cancel Tag
46
+ * @param section Section
47
+ * @param queue Queue
48
+ * @param success Success listener
49
+ * @param errorListener Error listener
50
50
*/
51
51
public void fetchKBArticle (String cancelTag , HSKBItem section , RequestQueue queue , OnFetchedArraySuccessListener success , ErrorListener errorListener )
52
52
{
@@ -55,13 +55,13 @@ public void fetchKBArticle(String cancelTag, HSKBItem section, RequestQueue queu
55
55
56
56
/**
57
57
*
58
- * @param cancelTag
59
- * @param firstName
60
- * @param lastname
61
- * @param emailAddress
62
- * @param queue
63
- * @param success
64
- * @param errorListener
58
+ * @param cancelTag Cancel Tag
59
+ * @param firstName First Name
60
+ * @param lastname Last Name
61
+ * @param emailAddress Email Address
62
+ * @param queue Queue
63
+ * @param success Success Listener
64
+ * @param errorListener Error Listener
65
65
*/
66
66
public void registerNewUser (String cancelTag , String firstName , String lastname , String emailAddress , RequestQueue queue , OnFetchedSuccessListener success , ErrorListener errorListener )
67
67
{
@@ -72,24 +72,24 @@ public void registerNewUser(String cancelTag, String firstName, String lastname,
72
72
*
73
73
* HSUploadAttachment.getAttachment() can contain mime/Type and filename
74
74
*
75
- * @param user
76
- * @param subject
77
- * @param body
78
- * @param successListener
79
- * @param errorListener
75
+ * @param user User
76
+ * @param subject Subject
77
+ * @param body Body
78
+ * @param successListener Success Listener
79
+ * @param errorListener Error Listener
80
80
*/
81
81
public void createNewTicket (String cancelTag , HSUser user , String subject , String body , HSUploadAttachment [] attachments , RequestQueue queue , OnNewTicketFetchedSuccessListener successListener , ErrorListener errorListener ) {
82
82
errorListener .onErrorResponse (new VolleyError ("Not implemented method" ));
83
83
}
84
84
85
85
/**
86
86
*
87
- * @param cancelTag
88
- * @param ticket
89
- * @param user
90
- * @param queue
91
- * @param success
92
- * @param errorListener
87
+ * @param cancelTag Cancel Tag
88
+ * @param ticket Ticket
89
+ * @param user User
90
+ * @param queue Queue
91
+ * @param success Success Listener
92
+ * @param errorListener Error Listener
93
93
*/
94
94
public void fetchAllUpdateOnTicket (String cancelTag , HSTicket ticket , HSUser user , RequestQueue queue , OnFetchedArraySuccessListener success , ErrorListener errorListener )
95
95
{
@@ -98,12 +98,12 @@ public void fetchAllUpdateOnTicket(String cancelTag, HSTicket ticket, HSUser use
98
98
99
99
/***
100
100
*
101
- * @param message
102
- * @param ticket
103
- * @param user
104
- * @param queue
105
- * @param success
106
- * @param errorListener
101
+ * @param message Message
102
+ * @param ticket Ticket
103
+ * @param user User
104
+ * @param queue Queue
105
+ * @param success Success Listener
106
+ * @param errorListener Error Listener
107
107
*/
108
108
public void addReplyOnATicket (String cancelTag , String message , HSUploadAttachment [] attachments , HSTicket ticket , HSUser user , RequestQueue queue , OnFetchedSuccessListener success , ErrorListener errorListener ) {
109
109
errorListener .onErrorResponse (new VolleyError ("Not implemented method" ));
@@ -113,9 +113,9 @@ public void addReplyOnATicket(String cancelTag, String message, HSUploadAttachme
113
113
* Set this parameter, if gear is not implementing handling of Issues. Doing this, default email client will be open with given support Email Address.
114
114
* Then there is no need to implement issues fetching related methods.
115
115
*
116
- * @default it is considered that gear is gonna implement ticket fetching.
116
+ * Default: it is considered that gear is gonna implement ticket fetching.
117
117
*
118
- * @param companySupportEmailAddress
118
+ * @param companySupportEmailAddress Company Support Email Address
119
119
*/
120
120
public void setNotImplementingTicketsFetching (String companySupportEmailAddress ) {
121
121
implementsTicketFetching = false ;
@@ -132,9 +132,8 @@ public String getCompanySupportEmailAddress() {
132
132
/**
133
133
* Returns if gear have implemented Ticket Fetching. Modify this parameter using {@link #setNotImplementingTicketsFetching(java.lang.String) setNotImplementingTicketsFetching}
134
134
*
135
- * @default true
135
+ * Default: true
136
136
*
137
- * @return
138
137
*/
139
138
public boolean haveImplementedTicketFetching () {
140
139
return implementsTicketFetching ;
@@ -143,9 +142,9 @@ public boolean haveImplementedTicketFetching() {
143
142
* Set this parameter, if gear is not implementing handling of FAQ. Doing this, FAQ will be fetched from article path.
144
143
* Then there is no need to implement issues fetching related methods.
145
144
*
146
- * @default it is considered that gear is gonna implement email fetching.
145
+ * Default: it is considered that gear is gonna implement email fetching.
147
146
*
148
- * @param articleResid
147
+ * @param articleResid Article Resource ID
149
148
*/
150
149
public void setNotImplementingKBFetching (int articleResid ) {
151
150
implementsKBFetching = false ;
@@ -163,9 +162,8 @@ public int getLocalArticleResourceId() {
163
162
/**
164
163
* Returns if gear have implemented KB Fetching. Modify this parameter using {@link #setNotImplementingKBFetching(int) setNotImplementingKBFetching}
165
164
*
166
- * @default true
165
+ * Default: true
167
166
*
168
- * @return
169
167
*/
170
168
public boolean haveImplementedKBFetching () {
171
169
return implementsKBFetching ;
@@ -175,9 +173,9 @@ public boolean haveImplementedKBFetching() {
175
173
*
176
174
* If this parameter is set, message written by user in chat screen and new issue screen will be returned in HTML format.
177
175
*
178
- * @default false
176
+ * Default: false
179
177
*
180
- * @param htmlEnabled
178
+ * @param htmlEnabled HTML Enabled
181
179
*/
182
180
public void uploadMessageAsHtmlString (boolean htmlEnabled ) {
183
181
this .supportHtmlMessage = htmlEnabled ;
@@ -186,9 +184,8 @@ public void uploadMessageAsHtmlString(boolean htmlEnabled) {
186
184
/**
187
185
* returns if gear can upload message as html string.
188
186
*
189
- * @default false
187
+ * Default: false
190
188
*
191
- * @return
192
189
*/
193
190
public boolean canUplaodMessageAsHtmlString () {
194
191
return supportHtmlMessage ;
@@ -199,9 +196,9 @@ public boolean canUplaodMessageAsHtmlString() {
199
196
*
200
197
* Sets maximum number of attachment gears can handle.
201
198
*
202
- * @default 1
199
+ * Default: 1
203
200
*
204
- * @param numberOfAttachmentGearCanHandle
201
+ * @param numberOfAttachmentGearCanHandle Number of Attachments that the Gear can handle
205
202
*/
206
203
public void setNumberOfAttachmentGearCanHandle (int numberOfAttachmentGearCanHandle ) {
207
204
this .numberOfAttachmentGearCanHandle = numberOfAttachmentGearCanHandle ;
@@ -210,7 +207,7 @@ public void setNumberOfAttachmentGearCanHandle (int numberOfAttachmentGearCanHan
210
207
/**
211
208
*
212
209
* @return maximum number of attachment gear can handle.
213
- * @default is 1
210
+ * Default: is 1
214
211
*/
215
212
public int getNumberOfAttachmentGearCanHandle () {
216
213
return numberOfAttachmentGearCanHandle ;
@@ -220,9 +217,9 @@ public int getNumberOfAttachmentGearCanHandle() {
220
217
/**
221
218
* if true, gear don't have to return back HSTicketUpdate object, after a reply is been added.
222
219
*
223
- * @default : false, means it is necessary for the gear to return HSTicketUpdate object, after a reply is been added.
220
+ * Default : false, means it is necessary for the gear to return HSTicketUpdate object, after a reply is been added.
224
221
*
225
- * @param canIgnore
222
+ * @param canIgnore Can Ignore
226
223
*/
227
224
public void ignoreTicketUpdateInformationAfterAddingReply (boolean canIgnore ) {
228
225
this .ignoreTicketUpdateInformationAfterAddingReply = canIgnore ;
0 commit comments