forked from google/gdata-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseContentEntry.java
More file actions
349 lines (315 loc) · 9.47 KB
/
Copy pathBaseContentEntry.java
File metadata and controls
349 lines (315 loc) · 9.47 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/* Copyright (c) 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gdata.data.sites;
import com.google.gdata.util.common.xml.XmlNamespace;
import com.google.gdata.data.BaseEntry;
import com.google.gdata.data.ExtensionDescription;
import com.google.gdata.data.ExtensionProfile;
import com.google.gdata.data.Link;
import com.google.gdata.data.batch.BatchId;
import com.google.gdata.data.batch.BatchInterrupted;
import com.google.gdata.data.batch.BatchOperation;
import com.google.gdata.data.batch.BatchStatus;
import com.google.gdata.data.dublincore.Publisher;
import com.google.gdata.data.extensions.Deleted;
import com.google.gdata.data.media.MediaEntry;
/**
* An entry representing a single content item.
*
* @param <E> concrete entry type
*
*/
public abstract class BaseContentEntry<E extends BaseContentEntry<E>> extends
MediaEntry<E> {
/**
* Default mutable constructor.
*/
public BaseContentEntry() {
super();
}
/**
* Constructs a new instance by doing a shallow copy of data from an existing
* {@link BaseEntry} instance.
*
* @param sourceEntry source entry
*/
public BaseContentEntry(BaseEntry<?> sourceEntry) {
super(sourceEntry);
}
@Override
public void declareExtensions(ExtensionProfile extProfile) {
if (extProfile.isDeclared(BaseContentEntry.class)) {
return;
}
super.declareExtensions(extProfile);
extProfile.declare(BaseContentEntry.class,
new ExtensionDescription(BatchId.class, new XmlNamespace("batch",
"http://schemas.google.com/gdata/batch"), "id", false, false, false));
extProfile.declare(BaseContentEntry.class,
new ExtensionDescription(BatchInterrupted.class,
new XmlNamespace("batch", "http://schemas.google.com/gdata/batch"),
"interrupted", false, false, false));
extProfile.declare(BaseContentEntry.class,
new ExtensionDescription(BatchOperation.class, new XmlNamespace("batch",
"http://schemas.google.com/gdata/batch"), "operation", false, false,
false));
extProfile.declare(BaseContentEntry.class,
new ExtensionDescription(BatchStatus.class, new XmlNamespace("batch",
"http://schemas.google.com/gdata/batch"), "status", false, false,
false));
extProfile.declare(BaseContentEntry.class,
new ExtensionDescription(Deleted.class, new XmlNamespace("gd",
"http://schemas.google.com/g/2005"), "deleted", false, false, false));
extProfile.declare(BaseContentEntry.class,
SitesLink.getDefaultDescription(true, true));
extProfile.declare(BaseContentEntry.class, Publisher.class);
extProfile.declare(BaseContentEntry.class, Revision.class);
}
/**
* Returns the batch identifier.
*
* @return batch identifier
*/
public BatchId getBatchId() {
return getExtension(BatchId.class);
}
/**
* Sets the batch identifier.
*
* @param batchId batch identifier or <code>null</code> to reset
*/
public void setBatchId(BatchId batchId) {
if (batchId == null) {
removeExtension(BatchId.class);
} else {
setExtension(batchId);
}
}
/**
* Returns whether it has the batch identifier.
*
* @return whether it has the batch identifier
*/
public boolean hasBatchId() {
return hasExtension(BatchId.class);
}
/**
* Returns the batch interruption information.
*
* @return batch interruption information
*/
public BatchInterrupted getBatchInterrupted() {
return getExtension(BatchInterrupted.class);
}
/**
* Sets the batch interruption information.
*
* @param batchInterrupted batch interruption information or <code>null</code>
* to reset
*/
public void setBatchInterrupted(BatchInterrupted batchInterrupted) {
if (batchInterrupted == null) {
removeExtension(BatchInterrupted.class);
} else {
setExtension(batchInterrupted);
}
}
/**
* Returns whether it has the batch interruption information.
*
* @return whether it has the batch interruption information
*/
public boolean hasBatchInterrupted() {
return hasExtension(BatchInterrupted.class);
}
/**
* Returns the batch operation.
*
* @return batch operation
*/
public BatchOperation getBatchOperation() {
return getExtension(BatchOperation.class);
}
/**
* Sets the batch operation.
*
* @param batchOperation batch operation or <code>null</code> to reset
*/
public void setBatchOperation(BatchOperation batchOperation) {
if (batchOperation == null) {
removeExtension(BatchOperation.class);
} else {
setExtension(batchOperation);
}
}
/**
* Returns whether it has the batch operation.
*
* @return whether it has the batch operation
*/
public boolean hasBatchOperation() {
return hasExtension(BatchOperation.class);
}
/**
* Returns the batch response status information.
*
* @return batch response status information
*/
public BatchStatus getBatchStatus() {
return getExtension(BatchStatus.class);
}
/**
* Sets the batch response status information.
*
* @param batchStatus batch response status information or <code>null</code>
* to reset
*/
public void setBatchStatus(BatchStatus batchStatus) {
if (batchStatus == null) {
removeExtension(BatchStatus.class);
} else {
setExtension(batchStatus);
}
}
/**
* Returns whether it has the batch response status information.
*
* @return whether it has the batch response status information
*/
public boolean hasBatchStatus() {
return hasExtension(BatchStatus.class);
}
/**
* Returns the If present, indicates that an item has been deleted. Deleted
* entries are not shown by default.
*
* @return If present, indicates that an item has been deleted. Deleted
* entries are not shown by default
*/
public Deleted getDeleted() {
return getExtension(Deleted.class);
}
/**
* Sets the If present, indicates that an item has been deleted. Deleted
* entries are not shown by default.
*
* @param deleted If present, indicates that an item has been deleted.
* Deleted entries are not shown by default or <code>null</code> to reset
*/
public void setDeleted(Deleted deleted) {
if (deleted == null) {
removeExtension(Deleted.class);
} else {
setExtension(deleted);
}
}
/**
* Returns whether it has the If present, indicates that an item has been
* deleted. Deleted entries are not shown by default.
*
* @return whether it has the If present, indicates that an item has been
* deleted. Deleted entries are not shown by default
*/
public boolean hasDeleted() {
return hasExtension(Deleted.class);
}
/**
* Returns the The authenticated user that uploaded the document if different
* than the author.
*
* @return The authenticated user that uploaded the document if different than
* the author
*/
public Publisher getPublisher() {
return getExtension(Publisher.class);
}
/**
* Sets the The authenticated user that uploaded the document if different
* than the author.
*
* @param publisher The authenticated user that uploaded the document if
* different than the author or <code>null</code> to reset
*/
public void setPublisher(Publisher publisher) {
if (publisher == null) {
removeExtension(Publisher.class);
} else {
setExtension(publisher);
}
}
/**
* Returns whether it has the The authenticated user that uploaded the
* document if different than the author.
*
* @return whether it has the The authenticated user that uploaded the
* document if different than the author
*/
public boolean hasPublisher() {
return hasExtension(Publisher.class);
}
/**
* Returns the revision.
*
* @return revision
*/
public Revision getRevision() {
return getExtension(Revision.class);
}
/**
* Sets the revision.
*
* @param revision revision or <code>null</code> to reset
*/
public void setRevision(Revision revision) {
if (revision == null) {
removeExtension(Revision.class);
} else {
setExtension(revision);
}
}
/**
* Returns whether it has the revision.
*
* @return whether it has the revision
*/
public boolean hasRevision() {
return hasExtension(Revision.class);
}
/**
* Returns the link that provides the URI that can be used to post new entries
* to the feed.
*
* @return Link that provides the URI that can be used to post new entries to
* the feed or {@code null} for none.
*/
public Link getEntryPostLink() {
return getLink(Link.Rel.ENTRY_POST, Link.Type.ATOM);
}
/**
* Returns the revision sites link.
*
* @return Revision sites link or {@code null} for none.
*/
public Link getRevisionLink() {
return getLink(SitesLink.Rel.REVISION, Link.Type.ATOM);
}
@Override
protected void validate() {
}
@Override
public String toString() {
return "{BaseContentEntry " + super.toString() + "}";
}
}