26 | | (currently this is the source, please rework:) |
27 | | * |
28 | | static final String CATWIESEL_NAMESPACE = "urn:catwiesel:attribute"; |
29 | | static final String DC_NAMESPACE = "http://purl.org/dc/elements/1.1"; |
30 | | |
31 | | |
32 | | |
33 | | public static final URI ABSTRACT = URI.create("http://purl.org/dc/terms/abstract"); |
34 | | public static final URI CREATION_DATE = URI.create("http://purl.org/dc/terms/created"); |
35 | | |
36 | | Specific properties for managing crawled data, submitted by '''Heinz Kirchmann''': |
37 | | public static final URI ENTRY_TYPE = URI.create(CATWIESEL_NAMESPACE + ":entry_type"); |
38 | | public static final URI MY_URI = URI.create(CATWIESEL_NAMESPACE + ":uri"); |
39 | | public static final URI PARENT_URI = URI.create(CATWIESEL_NAMESPACE + ":parent_uri"); |
40 | | public static final URI CHECKSUM = URI.create(CATWIESEL_NAMESPACE + ":checksum"); |
41 | | |
42 | | public static final URI CATEGORY_NAME = URI.create(CATWIESEL_NAMESPACE + ":category_name"); |
43 | | public static final URI CONTENT = URI.create(CATWIESEL_NAMESPACE + ":content"); |
44 | | |
45 | | |
46 | | |
47 | | public static final URI CATWIESEL_CREATION_DATE = URI.create(CATWIESEL_NAMESPACE + ":creation_date"); |
48 | | public static final URI MODIFICATION_DATE = URI.create("http://purl.org/dc/terms/modified"); |
49 | | public static final URI CATWIESEL_MODIFICATION_DATE = URI.create(CATWIESEL_NAMESPACE + ":modification_date"); |
50 | | public static final URI MODIFICATION_TIME = URI.create(CATWIESEL_NAMESPACE + ":modification_time"); |
51 | | public static final URI NUMBER_OF_PAGES = URI.create(CATWIESEL_NAMESPACE + ":number_of_pages"); |
52 | | |
53 | | public static final URI MIME_TYPE = URI.create(CATWIESEL_NAMESPACE + ":mime_type"); |
54 | | public static final URI CONTENT_MIME_TYPE = URI.create(CATWIESEL_NAMESPACE + ":content_mime_type"); |
55 | | public static final URI MAIL_SUBJECT = URI.create(CATWIESEL_NAMESPACE + ":mail_subject"); |
56 | | public static final URI MAIL_TO = URI.create(CATWIESEL_NAMESPACE + ":mail_to"); |
57 | | public static final URI MAIL_CARBON_COPY = URI.create(CATWIESEL_NAMESPACE + ":mail_carbon_copy"); |
58 | | public static final URI MAIL_BLIND_CARBON_COPY = URI.create(CATWIESEL_NAMESPACE + ":mail_blind_carbon_copy"); |
59 | | public static final URI CHARACTER_SET = URI.create(CATWIESEL_NAMESPACE + ":character_set"); |
60 | | public static final URI WIKIPEDIA_PAGE_ID = URI.create(CATWIESEL_NAMESPACE + ":wikipedia_page_id"); |
| 27 | * urn:catwiesel:attribute:entry_type |
| 28 | * urn:catwiesel:attribute:uri (MY URI) |
| 29 | * urn:catwiesel:attribute:parent_uri |
| 30 | * urn:catwiesel:attribute:checksum |
| 31 | * urn:catwiesel:attribute:category_name |
| 32 | * urn:catwiesel:attribute:content |
| 33 | * urn:catwiesel:attribute:creation_date |
| 34 | * urn:catwiesel:attribute:modification_date |
| 35 | * urn:catwiesel:attribute:modification_time |
| 36 | * urn:catwiesel:attribute:number_of_pages |
| 37 | * urn:catwiesel:attribute:mime_type |
| 38 | * urn:catwiesel:attribute:content_mime_type |
| 39 | * urn:catwiesel:attribute:mail_subject |
| 40 | * urn:catwiesel:attribute:mail_to |
| 41 | * urn:catwiesel:attribute:mail_carbon_copy |
| 42 | * urn:catwiesel:attribute:mail_blind_carbon_copy |
| 43 | * urn:catwiesel:attribute:character_set |
| 44 | * urn:catwiesel:attribute:wikipedia_page_id |