|
| 1 | +/******************************************************************************* |
| 2 | + * Copyright (c) 2026 Eclipse RDF4J contributors. |
| 3 | + * |
| 4 | + * All rights reserved. This program and the accompanying materials |
| 5 | + * are made available under the terms of the Eclipse Distribution License v1.0 |
| 6 | + * which accompanies this distribution, and is available at |
| 7 | + * http://www.eclipse.org/org/documents/edl-v10.php. |
| 8 | + * |
| 9 | + * SPDX-License-Identifier: BSD-3-Clause |
| 10 | + *******************************************************************************/ |
| 11 | + |
| 12 | +package org.eclipse.rdf4j.model.vocabulary.eu; |
| 13 | + |
| 14 | +import org.eclipse.rdf4j.model.IRI; |
| 15 | +import org.eclipse.rdf4j.model.Namespace; |
| 16 | + |
| 17 | +/** |
| 18 | + * Constants for the SEMIC Asset Description Metadata Schema. |
| 19 | + * |
| 20 | + * @see <a href="https://semiceu.github.io/ADMS/releases/2.00/">SEMIC Asset Description Metadata Schema</a> |
| 21 | + * |
| 22 | + * @author Bart Hanssens |
| 23 | + */ |
| 24 | +public class ADMS { |
| 25 | + /** |
| 26 | + * The ADMS namespace: http://www.w3.org/ns/adms# |
| 27 | + */ |
| 28 | + public static final String NAMESPACE = "http://www.w3.org/ns/adms#"; |
| 29 | + |
| 30 | + /** |
| 31 | + * Recommended prefix for the namespace: "adms" |
| 32 | + */ |
| 33 | + public static final String PREFIX = "adms"; |
| 34 | + |
| 35 | + /** |
| 36 | + * An immutable {@link Namespace} constant that represents the namespace. |
| 37 | + */ |
| 38 | + public static final Namespace NS = Vocabularies.createNamespace(PREFIX, NAMESPACE); |
| 39 | + |
| 40 | + // Classes |
| 41 | + /** adms:Asset */ |
| 42 | + public static final IRI Asset; |
| 43 | + |
| 44 | + /** adms:AssetDistribution */ |
| 45 | + public static final IRI AssetDistribution; |
| 46 | + |
| 47 | + /** adms:AssetRepository */ |
| 48 | + public static final IRI AssetRepository; |
| 49 | + |
| 50 | + /** adms:Identifier */ |
| 51 | + public static final IRI Identifier; |
| 52 | + |
| 53 | + // Properties |
| 54 | + /** adms:identifier */ |
| 55 | + public static final IRI identifier; |
| 56 | + |
| 57 | + /** adms:includedAsset */ |
| 58 | + public static final IRI includedAsset; |
| 59 | + |
| 60 | + /** adms:interoperabilityLevel */ |
| 61 | + public static final IRI interoperabilityLevel; |
| 62 | + |
| 63 | + /** adms:last */ |
| 64 | + public static final IRI last; |
| 65 | + |
| 66 | + /** adms:next */ |
| 67 | + public static final IRI next; |
| 68 | + |
| 69 | + /** adms:prev */ |
| 70 | + public static final IRI prev; |
| 71 | + |
| 72 | + /** adms:representationTechnique */ |
| 73 | + public static final IRI representationTechnique; |
| 74 | + |
| 75 | + /** adms:sample */ |
| 76 | + public static final IRI sample; |
| 77 | + |
| 78 | + /** adms:schemaAgency */ |
| 79 | + public static final IRI schemaAgency; |
| 80 | + |
| 81 | + /** adms:schemeAgency */ |
| 82 | + public static final IRI schemeAgency; |
| 83 | + |
| 84 | + /** adms:status */ |
| 85 | + public static final IRI status; |
| 86 | + |
| 87 | + /** adms:supportedSchema */ |
| 88 | + public static final IRI supportedSchema; |
| 89 | + |
| 90 | + /** adms:translation */ |
| 91 | + public static final IRI translation; |
| 92 | + |
| 93 | + /** adms:versionNotes */ |
| 94 | + public static final IRI versionNotes; |
| 95 | + |
| 96 | + static { |
| 97 | + Asset = Vocabularies.createIRI(NAMESPACE, "Asset"); |
| 98 | + AssetDistribution = Vocabularies.createIRI(NAMESPACE, "AssetDistribution"); |
| 99 | + AssetRepository = Vocabularies.createIRI(NAMESPACE, "AssetRepository"); |
| 100 | + Identifier = Vocabularies.createIRI(NAMESPACE, "Identifier"); |
| 101 | + |
| 102 | + identifier = Vocabularies.createIRI(NAMESPACE, "identifier"); |
| 103 | + includedAsset = Vocabularies.createIRI(NAMESPACE, "includedAsset"); |
| 104 | + interoperabilityLevel = Vocabularies.createIRI(NAMESPACE, "interoperabilityLevel"); |
| 105 | + last = Vocabularies.createIRI(NAMESPACE, "last"); |
| 106 | + next = Vocabularies.createIRI(NAMESPACE, "next"); |
| 107 | + prev = Vocabularies.createIRI(NAMESPACE, "prev"); |
| 108 | + representationTechnique = Vocabularies.createIRI(NAMESPACE, "representationTechnique"); |
| 109 | + sample = Vocabularies.createIRI(NAMESPACE, "sample"); |
| 110 | + schemaAgency = Vocabularies.createIRI(NAMESPACE, "schemaAgency"); |
| 111 | + schemeAgency = Vocabularies.createIRI(NAMESPACE, "schemeAgency"); |
| 112 | + status = Vocabularies.createIRI(NAMESPACE, "status"); |
| 113 | + supportedSchema = Vocabularies.createIRI(NAMESPACE, "supportedSchema"); |
| 114 | + translation = Vocabularies.createIRI(NAMESPACE, "translation"); |
| 115 | + versionNotes = Vocabularies.createIRI(NAMESPACE, "versionNotes"); |
| 116 | + } |
| 117 | +} |
0 commit comments