/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2010, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.atom.xml; /** * * @author Samuel Andrés * @module */ public class AtomConstants { // NAMESPACES public static final String URI_ATOM = "http://www.w3.org/2005/Atom"; public static final String URI_XSI = "http://www.w3.org/2001/XMLSchema-instance"; public static final String PREFIX_XSI = "xsi"; // TAGS public static final String TAG_AUTHOR = "author"; public static final String TAG_LINK = "link"; public static final String TAG_NAME = "name"; public static final String TAG_URI = "uri"; public static final String TAG_EMAIL = "email"; // ATTRIBUTES public static final String ATT_HREF = "href"; public static final String ATT_REL = "rel"; public static final String ATT_TYPE = "type"; public static final String ATT_HREFLANG = "hreflang"; public static final String ATT_TITLE = "title"; public static final String ATT_LENGTH = "length"; private AtomConstants(){} }