001/*
002 *  Copyright 2010 Anyware Services
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.ametys.plugins.repository.dublincore;
017
018/**
019 * Interface for DCMI types
020 */
021public interface DCMITypes
022{
023    /** Constant for DCMI type "Collection" */
024    public static final String COLLECTION = "Collection";
025    
026    /** Constant for DCMI type "Dataset" */
027    public static final String DATASET = "Dataset";
028    
029    /** Constant for DCMI type "Event" */
030    public static final String EVENT = "Event";
031    
032    /** Constant for DCMI type "Image" */
033    public static final String IMAGE = "Image";
034    
035    /** Constant for DCMI type "InteractiveResource" */
036    public static final String INTERACTIVERESOURCE = "InteractiveResource";
037    
038    /** Constant for DCMI type "PhysicalObject" */
039    public static final String PHYSICALOBJECT = "PhysicalObject";
040    
041    /** Constant for DCMI type "Service" */
042    public static final String SERVICE = "Service";
043    
044    /** Constant for DCMI type "Software" */
045    public static final String SOFTWARE = "Software";
046    
047    /** Constant for DCMI type "Sound" */
048    public static final String SOUND = "Sound";
049    
050    /** Constant for DCMI type "StillImage" */
051    public static final String STILLIMAGE = "StillImage";
052    
053    /** Constant for DCMI type "Text" */
054    public static final String TEXT = "Text";
055}