001: /*
002: (c) Copyright 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
003: [See end of file]
004: $Id: VCARD.java,v 1.8 2008/01/02 12:07:27 andy_seaborne Exp $
005: */
006:
007: /* Vocabulary Class generated by Jena vocabulary generator
008: *
009: * Version $Id: VCARD.java,v 1.8 2008/01/02 12:07:27 andy_seaborne Exp $
010: * On: Sat Mar 23 15:26:02 GMT 2002
011: */
012: package com.hp.hpl.jena.vocabulary;
013:
014: import com.hp.hpl.jena.rdf.model.*;
015:
016: /** VCARD vocabulary class for namespace http://www.w3.org/2001/vcard-rdf/3.0#
017: */
018: public class VCARD {
019:
020: protected static final String uri = "http://www.w3.org/2001/vcard-rdf/3.0#";
021:
022: /** returns the URI for this schema
023: * @return the URI for this schema
024: */
025: public static String getURI() {
026: return uri;
027: }
028:
029: private static Model m = ModelFactory.createDefaultModel();
030:
031: public static final Resource ORGPROPERTIES = m.createResource(uri
032: + "ORGPROPERTIES");
033: public static final Resource ADRTYPES = m.createResource(uri
034: + "ADRTYPES");
035: public static final Resource NPROPERTIES = m.createResource(uri
036: + "NPROPERTIES");
037: public static final Resource EMAILTYPES = m.createResource(uri
038: + "EMAILTYPES");
039: public static final Resource TELTYPES = m.createResource(uri
040: + "TELTYPES");
041: public static final Resource ADRPROPERTIES = m.createResource(uri
042: + "ADRPROPERTIES");
043: public static final Resource TZTYPES = m.createResource(uri
044: + "TZTYPES");
045: public static final Property Street = m.createProperty(uri,
046: "Street");
047: public static final Property AGENT = m.createProperty(uri, "AGENT");
048: public static final Property SOURCE = m.createProperty(uri,
049: "SOURCE");
050: public static final Property LOGO = m.createProperty(uri, "LOGO");
051: public static final Property BDAY = m.createProperty(uri, "BDAY");
052: public static final Property REV = m.createProperty(uri, "REV");
053: public static final Property SORT_STRING = m.createProperty(uri,
054: "SORT-STRING");
055: public static final Property Orgname = m.createProperty(uri,
056: "Orgname");
057: public static final Property CATEGORIES = m.createProperty(uri,
058: "CATEGORIES");
059: public static final Property N = m.createProperty(uri, "N");
060: public static final Property Pcode = m.createProperty(uri, "Pcode");
061: public static final Property Prefix = m.createProperty(uri,
062: "Prefix");
063: public static final Property PHOTO = m.createProperty(uri, "PHOTO");
064: public static final Property FN = m.createProperty(uri, "FN");
065: public static final Property ORG = m.createProperty(uri, "ORG");
066: public static final Property Suffix = m.createProperty(uri,
067: "Suffix");
068: public static final Property CLASS = m.createProperty(uri, "CLASS");
069: public static final Property ADR = m.createProperty(uri, "ADR");
070: public static final Property Region = m.createProperty(uri,
071: "Region");
072: public static final Property GEO = m.createProperty(uri, "GEO");
073: public static final Property Extadd = m.createProperty(uri,
074: "Extadd");
075: public static final Property GROUP = m.createProperty(uri, "GROUP");
076: public static final Property EMAIL = m.createProperty(uri, "EMAIL");
077: public static final Property UID = m.createProperty(uri, "UID");
078: public static final Property Family = m.createProperty(uri,
079: "Family");
080: public static final Property TZ = m.createProperty(uri, "TZ");
081: public static final Property NAME = m.createProperty(uri, "NAME");
082: public static final Property Orgunit = m.createProperty(uri,
083: "Orgunit");
084: public static final Property Country = m.createProperty(uri,
085: "Country");
086: public static final Property SOUND = m.createProperty(uri, "SOUND");
087: public static final Property TITLE = m.createProperty(uri, "TITLE");
088: public static final Property NOTE = m.createProperty(uri, "NOTE");
089: public static final Property MAILER = m.createProperty(uri,
090: "MAILER");
091: public static final Property Other = m.createProperty(uri, "Other");
092: public static final Property Locality = m.createProperty(uri,
093: "Locality");
094: public static final Property Pobox = m.createProperty(uri, "Pobox");
095: public static final Property KEY = m.createProperty(uri, "KEY");
096: public static final Property PRODID = m.createProperty(uri,
097: "PRODID");
098: public static final Property Given = m.createProperty(uri, "Given");
099: public static final Property LABEL = m.createProperty(uri, "LABEL");
100: public static final Property TEL = m.createProperty(uri, "TEL");
101: public static final Property NICKNAME = m.createProperty(uri,
102: "NICKNAME");
103: public static final Property ROLE = m.createProperty(uri, "ROLE");
104: }
105:
106: /*
107: (c) Copyright 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
108: All rights reserved.
109:
110: Redistribution and use in source and binary forms, with or without
111: modification, are permitted provided that the following conditions
112: are met:
113:
114: 1. Redistributions of source code must retain the above copyright
115: notice, this list of conditions and the following disclaimer.
116:
117: 2. Redistributions in binary form must reproduce the above copyright
118: notice, this list of conditions and the following disclaimer in the
119: documentation and/or other materials provided with the distribution.
120:
121: 3. The name of the author may not be used to endorse or promote products
122: derived from this software without specific prior written permission.
123:
124: THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
125: IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
126: OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
127: IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
128: INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
129: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
130: DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
131: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
132: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
133: THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
134: */
|