KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > hp > hpl > jena > vocabulary > VCARD


1 /*
2   (c) Copyright 2003, 2004, 2005 Hewlett-Packard Development Company, LP
3   [See end of file]
4   $Id: VCARD.java,v 1.5 2005/02/21 12:21:37 andy_seaborne Exp $
5 */

6
7 /* Vocabulary Class generated by Jena vocabulary generator
8  *
9  * Version $Id: VCARD.java,v 1.5 2005/02/21 12:21:37 andy_seaborne Exp $
10  * On: Sat Mar 23 15:26:02 GMT 2002
11  */

12 package com.hp.hpl.jena.vocabulary;
13
14 import com.hp.hpl.jena.rdf.model.*;
15
16 /** VCARD vocabulary class for namespace http://www.w3.org/2001/vcard-rdf/3.0#
17  */

18 public class VCARD {
19
20     protected static final String JavaDoc uri ="http://www.w3.org/2001/vcard-rdf/3.0#";
21
22     /** returns the URI for this schema
23      * @return the URI for this schema
24      */

25     public static String JavaDoc getURI() {
26           return uri;
27     }
28
29     private static Model m = ModelFactory.createDefaultModel();
30     
31     public static final Resource ORGPROPERTIES = m.createResource(uri + "ORGPROPERTIES" );
32     public static final Resource ADRTYPES = m.createResource(uri + "ADRTYPES" );
33     public static final Resource NPROPERTIES = m.createResource(uri + "NPROPERTIES" );
34     public static final Resource EMAILTYPES = m.createResource(uri + "EMAILTYPES" );
35     public static final Resource TELTYPES = m.createResource(uri + "TELTYPES" );
36     public static final Resource ADRPROPERTIES = m.createResource(uri + "ADRPROPERTIES" );
37     public static final Resource TZTYPES = m.createResource(uri + "TZTYPES" );
38     public static final Property Street = m.createProperty(uri, "Street" );
39     public static final Property AGENT = m.createProperty(uri, "AGENT" );
40     public static final Property SOURCE = m.createProperty(uri, "SOURCE" );
41     public static final Property LOGO = m.createProperty(uri, "LOGO" );
42     public static final Property BDAY = m.createProperty(uri, "BDAY" );
43     public static final Property REV = m.createProperty(uri, "REV" );
44     public static final Property SORT_STRING = m.createProperty(uri, "SORT-STRING" );
45     public static final Property Orgname = m.createProperty(uri, "Orgname" );
46     public static final Property CATEGORIES = m.createProperty(uri, "CATEGORIES" );
47     public static final Property N = m.createProperty(uri, "N" );
48     public static final Property Pcode = m.createProperty(uri, "Pcode" );
49     public static final Property Prefix = m.createProperty(uri, "Prefix" );
50     public static final Property PHOTO = m.createProperty(uri, "PHOTO" );
51     public static final Property FN = m.createProperty(uri, "FN" );
52     public static final Property ORG = m.createProperty(uri, "ORG" );
53     public static final Property Suffix = m.createProperty(uri, "Suffix" );
54     public static final Property CLASS = m.createProperty(uri, "CLASS" );
55     public static final Property ADR = m.createProperty(uri, "ADR" );
56     public static final Property Region = m.createProperty(uri, "Region" );
57     public static final Property GEO = m.createProperty(uri, "GEO" );
58     public static final Property Extadd = m.createProperty(uri, "Extadd" );
59     public static final Property GROUP = m.createProperty(uri, "GROUP" );
60     public static final Property EMAIL = m.createProperty(uri, "EMAIL" );
61     public static final Property UID = m.createProperty(uri, "UID" );
62     public static final Property Family = m.createProperty(uri, "Family" );
63     public static final Property TZ = m.createProperty(uri, "TZ" );
64     public static final Property NAME = m.createProperty(uri, "NAME" );
65     public static final Property Orgunit = m.createProperty(uri, "Orgunit" );
66     public static final Property Country = m.createProperty(uri, "Country" );
67     public static final Property SOUND = m.createProperty(uri, "SOUND" );
68     public static final Property TITLE = m.createProperty(uri, "TITLE" );
69     public static final Property NOTE = m.createProperty(uri, "NOTE" );
70     public static final Property MAILER = m.createProperty(uri, "MAILER" );
71     public static final Property Other = m.createProperty(uri, "Other" );
72     public static final Property Locality = m.createProperty(uri, "Locality" );
73     public static final Property Pobox = m.createProperty(uri, "Pobox" );
74     public static final Property KEY = m.createProperty(uri, "KEY" );
75     public static final Property PRODID = m.createProperty(uri, "PRODID" );
76     public static final Property Given = m.createProperty(uri, "Given" );
77     public static final Property LABEL = m.createProperty(uri, "LABEL" );
78     public static final Property TEL = m.createProperty(uri, "TEL" );
79     public static final Property NICKNAME = m.createProperty(uri, "NICKNAME" );
80     public static final Property ROLE = m.createProperty(uri, "ROLE" );
81     }
82
83 /*
84     (c) Copyright 2003, 2004, 2005 Hewlett-Packard Development Company, LP
85     All rights reserved.
86
87     Redistribution and use in source and binary forms, with or without
88     modification, are permitted provided that the following conditions
89     are met:
90
91     1. Redistributions of source code must retain the above copyright
92        notice, this list of conditions and the following disclaimer.
93
94     2. Redistributions in binary form must reproduce the above copyright
95        notice, this list of conditions and the following disclaimer in the
96        documentation and/or other materials provided with the distribution.
97
98     3. The name of the author may not be used to endorse or promote products
99        derived from this software without specific prior written permission.
100
101     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
102     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
103     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
104     IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
105     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
106     NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
107     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
108     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
109     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
110     THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
111 */

112
Popular Tags