source: main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/OAIXML.java@ 28983

Last change on this file since 28983 was 28983, checked in by kjdon, 10 years ago

added OAI_SERVICE_RACK static string

File size: 22.8 KB
Line 
1/*
2 * OAIXML.java
3 * Copyright (C) 2008 New Zealand Digital Library, http://www.nzdl.org
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19package org.greenstone.gsdl3.util;
20
21import org.greenstone.util.GlobalProperties;
22
23import org.w3c.dom.*;
24
25import java.io.*;
26import java.net.*;
27import java.util.*;
28import java.text.DateFormat;
29import java.text.SimpleDateFormat;
30
31// import file Logger.java
32import org.apache.log4j.*;
33
34/** these constants are used for the OAI service */
35public class OAIXML {
36
37 static Logger logger = Logger.getLogger(org.greenstone.gsdl3.util.GSXML.class.getName());
38
39 // the leading keyword of oai protocol
40 public static final String VERB = "verb";
41
42 // six valid oai verbs
43 public static final String GET_RECORD = "GetRecord";
44 public static final String LIST_RECORDS = "ListRecords";
45 public static final String LIST_IDENTIFIERS = "ListIdentifiers";
46 public static final String LIST_SETS = "ListSets";
47 public static final String LIST_METADATA_FORMATS = "ListMetadataFormats";
48 public static final String IDENTIFY = "Identify";
49
50 // oai request parameters
51 public static final String METADATA_PREFIX = "metadataPrefix";
52 public static final String FROM = "from";
53 public static final String UNTIL = "until";
54 public static final String SET = "set";
55 public static final String RESUMPTION_TOKEN = "resumptionToken";
56 public static final String IDENTIFIER = "identifier";
57
58 // Error element and code att
59 public static final String ERROR = "error";
60 public static final String CODE = "code";
61
62 // OAI error codes
63 public static final String BAD_ARGUMENT = "badArgument";
64 public static final String BAD_RESUMPTION_TOKEN = "badResumptionToken";
65 public static final String BAD_VERB = "badVerb";
66 public static final String CANNOT_DISSEMINATE_FORMAT = "cannotDisseminateFormat";
67 public static final String ID_DOES_NOT_EXIST = "idDoesNotExist";
68 public static final String NO_METADATA_FORMATS = "noMetadataFormats";
69 public static final String NO_RECORDS_MATCH = "noRecordsMatch";
70 public static final String NO_SET_HIERARCHY = "noSetHierarchy";
71
72
73 // words used to compose oai responses
74 // many of these used in OAIConfig too
75
76 // General
77 public static final String OAI_PMH = "OAI-PMH";
78 public static final String RESPONSE_DATE = "responseDate";
79 public static final String REQUEST = "request";
80
81 // Identify data
82 public static final String ADMIN_EMAIL = "adminEmail";
83 public static final String BASE_URL = "baseURL";
84 public static final String COMPRESSION = "compression";
85 public static final String DELETED_RECORD = "deletedRecord";
86 public static final String DESCRIPTION = "description";
87 public static final String EARLIEST_DATESTAMP = "earliestDatestamp";
88 public static final String GRANULARITY = "granularity";
89 public static final String LAST_MODIFIED = "lastmodified";
90 public static final String PROTOCOL_VERSION = "protocolVersion";
91 public static final String REPOSITORY_NAME = "repositoryName";
92 public static final String OAI_IDENTIFIER = "oai-identifier";
93 public static final String SCHEME = "scheme";
94 public static final String REPOSITORY_IDENTIFIER = "repositoryIdentifier";
95 public static final String DELIMITER = "delimiter";
96 public static final String SAMPLE_IDENTIFIER = "sampleIdentifier";
97
98 // metadata formats
99 public static final String METADATA_FORMAT = "metadataFormat";
100 public static final String SCHEMA = "schema";
101 public static final String METADATA_NAMESPACE = "metadataNamespace";
102 public static final String OAI_DC = "oai_dc";
103 public static final String DC = "dc";
104
105 // record response data
106 // SET_SPEC
107 public static final String RECORD = "record";
108 public static final String HEADER = "header";
109 public static final String DATESTAMP = "datestamp";
110 public static final String METADATA = "metadata";
111
112 // list sets
113 // SET,
114 public static final String SET_NAME = "setName";
115 public static final String SET_SPEC = "setSpec";
116 public static final String SET_DESCRIPTION = "setDescription";
117
118 // resumption token element
119 public static final String RESUMPTION_TOKEN_ELEM = "resumptionToken";
120 public static final String EXPIRATION_DATE = "expirationDate";
121 public static final String COMPLETE_LIST_SIZE = "completeListSize";
122 public static final String CURSOR = "cursor";
123
124 // extra elements/attributes from OAIConfig
125 public static final String OAI_INFO = "oaiInfo";
126 public static final String USE_STYLESHEET = "useOAIStylesheet";
127 public static final String STYLESHEET = "OAIStylesheet";
128 public static final String RESUME_AFTER = "resumeAfter";
129 public static final String RESUMPTION_TOKEN_EXPIRATION = "resumptionTokenExpiration";
130 public static final String OAI_SUPER_SET = "oaiSuperSet";
131 public static final String MAPPING = "mapping";
132 public static final String MAPPING_LIST = "mappingList";
133
134 // code constants
135 public static final String GS_OAI_RESOURCE_URL = "gs.OAIResourceURL";
136 public static final String ILLEGAL_OAI_VERB = "Illegal OAI verb";
137 public static final String LASTMODIFIED = "lastmodified";
138 // // The node id in the collection database, which contains all the OIDs in the database
139 public static final String BROWSELIST = "browselist";
140 public static final String OAI_LASTMODIFIED = "oailastmodified";
141 public static final String OAIPMH = "OAIPMH";
142 public static final String OAI_SET_LIST = "oaiSetList";
143 public static final String OAI_SERVICE_UNAVAILABLE = "OAI service unavailable";
144 public static final String OID = "OID";
145
146 public static final String OAI_SERVICE_RACK = "OAIPMH";
147 //system-dependent file separator, maybe '/' or '\'
148 public static final String FILE_SEPARATOR = File.separator;
149 public static final String OAI_VERSION1 = "1.0";
150 public static final String OAI_VERSION2 = "2.0";
151 /*************************above are final values****************************/
152
153
154 //initialized in getOAIConfigXML()
155 public static Element oai_config_elem = null;
156
157 //stores the date format "yyyy-MM-ddTHH:mm:ssZ"
158 // this is the granularity for datestamps
159 public static String granularity = "";
160
161 // http://www.openarchives.org/OAI/openarchivesprotocol.html#DatestampsRequests
162 // specifies that all repositories must support YYYY-MM-DD (yyyy-MM-dd in Java)
163 // this would be in addition to the other (optional) granularity of above that
164 // a repository may additionally choose to support.
165 public static final String default_granularity = "yyyy-MM-dd";
166
167 public static long token_expiration = 7200;
168 /** which version of oai that this oaiserver supports; default is 2.0
169 * initialized in getOAIConfigXML()
170 */
171 public static String oai_version = "2.0";
172 public static String baseURL = "";
173
174 /** Converter for parsing files and creating Elements */
175 public static XMLConverter converter = new XMLConverter();
176
177 public static String[] special_char = {"/", "?", "#", "=", "&", ":", ";", " ", "%", "+"};
178 public static String[] escape_sequence = {"%2F", "%3F", "%23", "%3D", "%26", "%3A", "%3B", "%20", "%25", "%2B"};
179
180 public static String getOAIVersion() {
181 return oai_version;
182 }
183
184 public static String getBaseURL() {
185 return baseURL;
186 }
187
188 /** Read in OAIConfig.xml (residing web/WEB-INF/classes/) and use it to configure the receptionist etc.
189 * the oai_version and baseURL variables are also set in here.
190 * The init() method is also called in here. */
191 public static Element getOAIConfigXML() {
192
193 File oai_config_file = null;
194
195 try {
196 URL oai_config_url = Class.forName("org.greenstone.gsdl3.OAIServer").getClassLoader().getResource("OAIConfig.xml");
197 if (oai_config_url == null) {
198 logger.error("couldn't find OAIConfig.xml via class loader");
199 return null;
200 }
201 oai_config_file = new File(oai_config_url.toURI());
202 if (!oai_config_file.exists()) {
203 logger.error(" oai config file: "+oai_config_file.getPath()+" not found!");
204 return null;
205 }
206 } catch(Exception e) {
207 logger.error("couldn't find OAIConfig.xml "+e.getMessage());
208 return null;
209 }
210
211 Document oai_config_doc = converter.getDOM(oai_config_file, "utf-8");
212 if (oai_config_doc != null) {
213 oai_config_elem = oai_config_doc.getDocumentElement();
214 } else {
215 logger.error("Failed to parse oai config file OAIConfig.xml.");
216 return null;
217 }
218
219 //initialize oai_version
220 Element protocol_version = (Element)GSXML.getChildByTagName(oai_config_elem, PROTOCOL_VERSION);
221 oai_version = GSXML.getNodeText(protocol_version).trim();
222
223 // initialize baseURL
224 Element base_url_elem = (Element)GSXML.getChildByTagName(oai_config_elem, BASE_URL);
225 baseURL = GSXML.getNodeText(base_url_elem);
226
227 //initialize token_expiration
228 Element expiration = (Element)GSXML.getChildByTagName(oai_config_elem, RESUMPTION_TOKEN_EXPIRATION);
229 String expire_str = GSXML.getNodeText(expiration).trim();
230 if (expiration != null && !expire_str.equals("")) {
231 token_expiration = Long.parseLong(expire_str);
232 }
233
234 // read granularity from the config file
235 Element granu_elem = (Element)GSXML.getChildByTagName(oai_config_elem, GRANULARITY);
236 //initialize the granu_str which might be used by other methods (eg, getDate())
237 granularity = GSXML.getNodeText(granu_elem).trim();
238
239 //change "yyyy-MM-ddTHH:mm:ssZ" to "yyyy-MM-dd'T'HH:mm:ss'Z'"
240 granularity = granularity.replaceAll("T", "'T'");
241 granularity = granularity.replaceAll("Z", "'Z'");
242 granularity = granularity.replaceAll("YYYY", "yyyy").replaceAll("DD", "dd").replaceAll("hh", "HH");
243 return oai_config_elem;
244 }
245
246 public static String[] getMetadataMapping(Element metadata_format) {
247
248 if (metadata_format == null) {
249 return null;
250 }
251 NodeList mappings = metadata_format.getElementsByTagName(MAPPING);
252 int size = mappings.getLength();
253 if (size == 0) {
254 logger.info("No metadata mappings are provided in OAIConfig.xml.");
255 return null;
256 }
257 String[] names = new String[size];
258 for (int i=0; i<size; i++) {
259 names[i] = GSXML.getNodeText((Element)mappings.item(i)).trim();
260 }
261 return names;
262
263 }
264
265 public static String[] getGlobalMetadataMapping(String prefix) {
266 Element list_meta_formats = (Element)GSXML.getChildByTagName(oai_config_elem, LIST_METADATA_FORMATS);
267 if(list_meta_formats == null) {
268 return null;
269 }
270 Element metadata_format = GSXML.getNamedElement(list_meta_formats, METADATA_FORMAT, METADATA_PREFIX, prefix);
271 if(metadata_format == null) {
272 return null;
273 }
274 return getMetadataMapping(metadata_format);
275 }
276
277
278 public static long getTokenExpiration() {
279 return token_expiration*1000; // in milliseconds
280 }
281
282 /** TODO: returns a basic response for appropriate oai version
283 *
284 */
285 public static Element createBasicResponse(Document doc, String verb, String[] pairs) {
286
287 Element response = createResponseHeader(doc, verb);
288
289 //set the responseDate and request elements accordingly
290 Element request_elem = (Element)GSXML.getChildByTagName(response, REQUEST);
291 if (verb.equals("")) {
292 request_elem.setAttribute(VERB, verb);
293 }
294 int num_pairs = (pairs==null)? 0 : pairs.length;
295 for (int i=num_pairs - 1; i>=0; i--) {
296 int index = pairs[i].indexOf("=");
297 if (index != -1) {
298 String[] strs = pairs[i].split("=");
299 if(strs != null && strs.length == 2) {
300 request_elem.setAttribute(strs[0], oaiDecode(strs[1]));
301 }
302 }
303 }//end of for()
304
305 GSXML.setNodeText(request_elem, baseURL);
306
307 Node resp_date = GSXML.getChildByTagName(response, RESPONSE_DATE);
308 if (resp_date != null) {
309 GSXML.setNodeText((Element)resp_date, getCurrentUTCTime());
310 }
311
312 return response;
313 }
314 /** @param error_code the value of the code attribute
315 * @param error_text the node text of the error element
316 * @return an oai error <message><response><error>
317 */
318 public static Element createErrorMessage(String error_code, String error_text) {
319 Document doc = converter.newDOM();
320 Element message = doc.createElement(GSXML.MESSAGE_ELEM);
321 Element resp = doc.createElement(GSXML.RESPONSE_ELEM);
322 message.appendChild(resp);
323 Element error = createErrorElement(doc, error_code, error_text);
324 resp.appendChild(error);
325 return message;
326 }
327
328 /** @param error_code the value of the code attribute
329 * @param error_text the node text of the error element
330 * @return an oai error <response><error>
331 */
332 public static Element createErrorResponse(String error_code, String error_text) {
333 Document doc = converter.newDOM();
334 Element resp = doc.createElement(GSXML.RESPONSE_ELEM);
335 Element error = createErrorElement(doc, error_code, error_text);
336 resp.appendChild(error);
337 return resp;
338 }
339
340 /** @param error_code the value of the code attribute
341 * @param error_text the node text of the error element
342 * @return an oai error <error>
343 */
344 public static Element createErrorElement(Document doc, String error_code, String error_text) {
345 Element error = doc.createElement(ERROR);
346 error.setAttribute(CODE, error_code);
347 GSXML.setNodeText(error, error_text);
348 return error;
349 }
350
351 public static Element createResetResponse(boolean success) {
352 Document doc = converter.newDOM();
353 Element response = doc.createElement(GSXML.RESPONSE_ELEM);
354 if (success) {
355 response.setAttribute("status", "OK");
356 GSXML.setNodeText(response, "Reset OAIServer successfully");
357 } else {
358 response.setAttribute("status", "FAIL");
359 GSXML.setNodeText(response, "Failed to reset oaiserver");
360 }
361 return response;
362 }
363 /** convert the escaped sequences (eg, '%3A') of those special characters back to their
364 * original form (eg, ':').
365 */
366 public static String oaiDecode(String escaped_str) {
367 logger.info("oaiDecode() " +escaped_str);
368 for (int i=0; i<special_char.length; i++) {
369 if (escaped_str.indexOf(escape_sequence[i]) != -1) {
370 escaped_str = escaped_str.replaceAll(escape_sequence[i], special_char[i]);
371 }
372 }
373 return escaped_str;
374 }
375 /** convert those special characters (eg, ':') to their
376 * escaped sequences (eg, '%3A').
377 */
378 public static String oaiEncode(String original_str) {
379 logger.info("oaiEncode() " + original_str);
380 for (int i=0; i<special_char.length; i++) {
381 if (original_str.indexOf(special_char[i]) != -1) {
382 original_str = original_str.replaceAll(special_char[i], escape_sequence[i]);
383 }
384 }
385 return original_str;
386 }
387 /** convert YYYY-MM_DDThh:mm:ssZ to yyyy-MM-ddTHH:mm:ssZ
388 */
389 public static String convertToJava(String oai_format) {
390 oai_format = oai_format.replaceAll("YYYY", "yyyy").replaceAll("DD", "dd").replaceAll("hh", "HH");
391 return oai_format;
392 }
393 /** convert yyyy-MM-ddTHH:mm:ssZ to YYYY-MM_DDThh:mm:ssZ
394 */
395 public static String convertToOAI(String java_format) {
396 java_format = java_format.replaceAll("yyyy", "YYYY").replaceAll("dd", "DD").replaceAll("HH", "hh");
397 return java_format;
398 }
399 public static String getCurrentUTCTime() {
400 Date current_utc = new Date(System.currentTimeMillis());
401 //granularity is in the form: yyyy-MM-dd'T'HH:mm:ss'Z '
402 DateFormat formatter = new SimpleDateFormat(granularity);
403 return formatter.format(current_utc);
404 }
405 /** get a Date object from a Date format pattern string
406 *
407 * @param pattern - in the form: 2007-06-14T16:48:25Z, for example.
408 * @return a Date object - null if the pattern is not in the specified form
409 */
410
411 public static Date getDate(String pattern) {
412 if (pattern == null || pattern.equals("")) {
413 return null;
414 }
415 Date date = null;
416 // String str = pattern.replaceAll("T", " ");
417 // str = str.replaceAll("Z", "");
418 SimpleDateFormat sdf = null;
419 try {
420 sdf = new SimpleDateFormat(granularity);
421 date = sdf.parse(pattern);
422 } catch(Exception e) {
423 if(!default_granularity.equals(granularity)) { // try validating against default granularity
424 try {
425 date = null;
426 sdf = null;
427 sdf = new SimpleDateFormat(default_granularity);
428 date = sdf.parse(pattern);
429 } catch(Exception ex) {
430 logger.error("invalid date format: " + pattern);
431 return null;
432 }
433 } else {
434 logger.error("invalid date format: " + pattern);
435 return null;
436 }
437 }
438 return date;
439 }
440 /** get the million second value from a string representing time in a pattern
441 * (eg, 2007-06-14T16:48:25Z)
442 */
443 public static long getTime(String pattern) {
444 if (pattern == null || pattern.equals("")) {
445 return -1;
446 }
447 Date date = null;
448 SimpleDateFormat sdf = null;
449 try {
450 //granularity is a global variable in the form: yyyy-MM-ddTHH:mm:ssZ
451 sdf = new SimpleDateFormat(granularity);
452 date = sdf.parse(pattern);
453 } catch(Exception e) {
454 if(!default_granularity.equals(granularity)) { // try validating against default granularity
455 try {
456 date = null;
457 sdf = null;
458 sdf = new SimpleDateFormat(default_granularity);
459 date = sdf.parse(pattern);
460 } catch(Exception ex) {
461 logger.error("invalid date format: " + pattern);
462 return -1;
463 }
464 } else {
465 logger.error("invalid date format: " + pattern);
466 return -1;
467 }
468 }
469 return date.getTime();
470 }
471 /** get the string representation of a time from a long value(long type)
472 */
473 public static String getTime(long milliseconds) {
474 Date date = new Date(milliseconds);
475 SimpleDateFormat sdf = new SimpleDateFormat(granularity);
476 return sdf.format(date);
477 }
478 public static Element createResponseHeader(Document response_doc, String verb) {
479 String tag_name = (oai_version.equals(OAI_VERSION2))? OAI_PMH : verb;
480 Element oai = response_doc.createElement(tag_name);
481 Element resp_date = response_doc.createElement(RESPONSE_DATE);
482 Element req = response_doc.createElement(REQUEST);
483 oai.appendChild(resp_date);
484 oai.appendChild(req);
485
486 if(oai_version.equals(OAI_VERSION2)) {
487 oai.setAttribute("xmlns", "http://www.openarchives.org/OAI/2.0/");
488 oai.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
489 oai.setAttribute("xsi:schemaLocation", "http://www.openarchives.org/OAI/2.0/ \n http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd");
490 } else {
491 oai.setAttribute("xmlns", "http://www.openarchives.com/OAI/1.1/OAI_" + verb);
492 oai.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
493 oai.setAttribute("xsi:schemaLocation", "http://www.openarchives.org/OAI/1.1/OAI_" + verb + "\n http://www.openarchives.org/OAI/1.1/OAI_" + verb + ".xsd");
494 }
495 return oai;
496 }
497 public static Element getMetadataPrefixElement(Document doc, String tag_name, String version) {
498 //examples of tag_name: dc, oai_dc:dc, etc.
499 Element oai = doc.createElement(tag_name);
500 if (version.equals(OAI_VERSION2)) {
501 oai.setAttribute("xmlns:oai_dc", "http://www.openarchives.org/OAI/2.0/oai_dc/");
502 oai.setAttribute("xmlns:dc", "http://purl.org/dc/elements/1.1/");
503 oai.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
504 oai.setAttribute("xsi:schemaLocation", "http://www.openarchives.org/OAI/2.0/oai_dc/ \n http://www.openarchives.org/OAI/2.0/oai_dc.xsd");
505 } else {
506 oai.setAttribute("xmlns", "http://www.openarchives.com/OAI/1.1/");
507 oai.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
508 oai.setAttribute("xsi:schemaLocation", "http://www.openarchives.org/OAI/1.1/" + tag_name + ".xsd");
509 }
510
511 return oai;
512 }
513 public static HashMap<String, Node> getChildrenMapByTagName(Node n, String tag_name) {
514
515 HashMap<String, Node> map= new HashMap<String, Node>();
516 Node child = n.getFirstChild();
517 while (child!=null) {
518 String name = child.getNodeName();
519 if(name.equals(tag_name)) {
520 map.put(name, child);
521 }
522 child = child.getNextSibling();
523 }
524 return map;
525 }
526
527 public static Element createOAIIdentifierXML(Document doc, String repository_id, String sample_collection, String sample_doc_id) {
528 String xml = "<oai-identifier xmlns=\"http://www.openarchives.org/OAI/2.0/oai-identifier\"\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n xsi:schemaLocation=\"http://www.openarchives.org/OAI/2.0/oai-identifier\n http://www.openarchives.org/OAI/2.0/oai-identifier.xsd\">\n <scheme>oai</scheme>\n<repositoryIdentifier>" + repository_id + "</repositoryIdentifier>\n<delimiter>:</delimiter>\n<sampleIdentifier>oai:"+repository_id+":"+sample_collection+":"+sample_doc_id+"</sampleIdentifier>\n</oai-identifier>";
529
530 Document xml_doc = converter.getDOM(xml);
531 return (Element)doc.importNode(xml_doc.getDocumentElement(), true);
532
533
534 }
535
536 public static Element createGSDLElement(Document doc) {
537 String xml = "<gsdl xmlns=\"http://www.greenstone.org/namespace/gsdl_oaiinfo/1.0/gsdl_oaiinfo\"\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n xsi:schemaLocation=\"http://www.greenstone.org/namespace/gsdl_oaiinfo/1.0/gsdl_oaiinfo\n http://www.greenstone.org/namespace/gsdl_oaiinfo/1.0/gsdl_oaiinfo.xsd\"></gsdl>";
538 Document xml_doc = converter.getDOM(xml);
539 return (Element)doc.importNode(xml_doc.getDocumentElement(), true);
540
541
542 }
543
544 public static Element createSet(Document doc, String spec, String name, String description) {
545
546 Element set_elem = doc.createElement(SET);
547 Element set_spec = doc.createElement(SET_SPEC);
548 GSXML.setNodeText(set_spec, spec);
549 set_elem.appendChild(set_spec);
550 Element set_name = doc.createElement(SET_NAME);
551 GSXML.setNodeText(set_name, name);
552 set_elem.appendChild(set_name);
553 if (description != null) {
554 Element set_description = doc.createElement(SET_DESCRIPTION);
555 GSXML.setNodeText(set_description, description);
556 set_elem.appendChild(set_description);
557 }
558 return set_elem;
559
560 }
561
562 /** returns the resumptionToken element to go into an OAI response */
563 public static Element createResumptionTokenElement(Document doc, String token_name, int total_size, int cursor, long expiration_time) {
564 Element token = doc.createElement(OAIXML.RESUMPTION_TOKEN);
565 if (total_size != -1) {
566 token.setAttribute(OAIXML.COMPLETE_LIST_SIZE, "" + total_size);
567 }
568 if (cursor != -1) {
569 token.setAttribute(OAIXML.CURSOR, "" + cursor);
570 }
571 if(expiration_time !=-1) {
572 token.setAttribute(OAIXML.EXPIRATION_DATE, getTime(expiration_time));
573 }
574
575 if (token != null) {
576 GSXML.setNodeText(token, token_name);
577 }
578 return token;
579 }
580
581}
582
583
584
585
586
587
Note: See TracBrowser for help on using the repository browser.