001 /*---------------- FILE HEADER ------------------------------------------
002
003 This file is part of lgb catalogue service implementation
004
005 Contact:
006
007 Andreas Poth
008 lat/lon GmbH
009 Aennchenstr. 19
010 53177 Bonn
011 Germany
012 E-Mail: poth@lat-lon.de
013
014 ---------------------------------------------------------------------------*/
015 package org.deegree.ogcwebservices.csw.iso_profile;
016
017 import org.deegree.framework.util.TimeTools;
018
019 /**
020 * Java operations required for transforming a OGC:WMS 1.1.1
021 * capabilities document into a ISO 19119/139 XML metadata document
022 *
023 *
024 * @version $Revision: 1.1 $
025 * @author <a href="mailto:poth@lat-lon.de">Andreas Poth</a>
026 * @author last edited by: $Author: poth $
027 *
028 * @version 1.0. $Revision: 1.1 $, $Date: 2006/08/09 19:09:44 $
029 */
030 public class OWS2ISO19119 {
031
032 /**
033 * returns the current timestamp formated as specified by ISO 8601
034 * @return
035 */
036 public static String getCurrentTimestamp() {
037 return TimeTools.getISOFormattedTime();
038 }
039
040 }