001/*
002 * Copyright 2020 Global Biodiversity Information Facility (GBIF)
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.gbif.api.vocabulary;
017
018public enum RelationType {
019
020  /**
021   * An agent endorses another one, typically this will be a Participant Node endorsing an Institution or Organisation.
022   */
023  ENDORSES,
024
025  /**
026   * An agent owns another agent. Typically this will be an organisation or institution hosting one or many resources.
027   */
028  OWNS,
029
030  /**
031   * An agent serves an entity (e.g. has an installation, or hosts a dataset on behalf of another organization).
032   */
033  SERVES,
034
035  /**
036   * An agent has a technical installation deployed by its own.
037   */
038  HAS_INSTALLATION,
039
040  /**
041   * An agent serves as part of a whole.
042   */
043  HAS_CONSTITUENT
044
045}