001 002/* 003 * Copyright (C) 2010 Archie L. Cobbs. All rights reserved. 004 * 005 * $Id$ 006 */ 007 008package org.dellroad.jibxbindings.pidf; 009 010/** 011 * Contants associated with the Presence Information Data Format (PIDF). 012 * 013 * @see <a href="http://tools.ietf.org/html/rfc3863">RFC 3863</a> 014 */ 015public final class PIDF { 016 017 /** 018 * XML namespace for PIDF elements. 019 */ 020 public static final String XML_NAMESPACE = "urn:ietf:params:xml:ns:pidf"; 021 022 /** 023 * MIME type for PIDF documents. 024 */ 025 public static final String MIME_TYPE = "application/pidf+xml"; 026 027 private PIDF() { 028 } 029} 030