org.openmdx.application.mof.cci.ModelAttributes Maven / Gradle / Ivy
/*
* ====================================================================
* Project: openmdx, http://www.openmdx.org/
* Description: Constants for ModelAttributes
* Owner: OMEX AG, Switzerland, http://www.omex.ch
* ====================================================================
*
* This software is published under the BSD license
* as listed below.
*
* Copyright (c) 2004, OMEX AG, Switzerland
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* * Neither the name of the openMDX team nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* ------------------
*
* This product includes software developed by the Apache Software
* Foundation (http://www.apache.org/).
*/
package org.openmdx.application.mof.cci;
/**
* The ModelTypeNames
class contains the
* qualified names of the org::omg::model1 types.
*/
public class ModelAttributes {
protected ModelAttributes() {
// Avoid instantiation
}
/**
*/
static public final String CLASS = "org:omg:model1:Class";
/**
*/
static public final String ASSOCIATION = "org:omg:model1:Association";
/**
*/
static public final String ASSOCIATION_END = "org:omg:model1:AssociationEnd";
/**
*/
static public final String ATTRIBUTE = "org:omg:model1:Attribute";
/**
*/
static public final String REFERENCE = "org:omg:model1:Reference";
/**
*/
static public final String OPERATION = "org:omg:model1:Operation";
/**
*/
static public final String PARAMETER = "org:omg:model1:Parameter";
/**
*/
static public final String IMPORT = "org:omg:model1:Import";
/**
*/
static public final String PACKAGE = "org:omg:model1:Package";
/**
*/
static public final String PRIMITIVE_TYPE = "org:omg:model1:PrimitiveType";
/**
*/
static public final String ELEMENT = "org:omg:model1:Element";
/**
*/
static public final String FEATURE = "org:omg:model1:Feature";
/**
*/
static public final String MBEHAVIOURAL_FEATURE = "org:omg:model1:BehaviouralFeature";
/**
*/
static public final String EXCEPTION = "org:omg:model1:Exception";
/**
*/
static public final String STRUCTURAL_FEATURE = "org:omg:model1:StructuralFeature";
/**
*/
static public final String NAMESPACE = "org:omg:model1:Namespace";
/**
*/
static public final String GENERALIZABLE_ELEMENT = "org:omg:model1:GeneralizableElement";
/**
*/
static public final String CLASSIFIER = "org:omg:model1:Classifier";
/**
*/
static public final String DATATYPE = "org:omg:model1:Datatype";
/**
*/
static public final String ALIAS_TYPE = "org:omg:model1:AliasType";
/**
*/
static public final String ENUMERATION_TYPE = "org:omg:model1:EnumerationType";
/**
*/
static public final String COLLECTION_TYPE = "org:omg:model1:CollectionType";
/**
*/
static public final String STRUCTURE_TYPE = "org:omg:model1:StructureType";
/**
*/
static public final String CONSTRAINT = "org:omg:model1:Constraint";
/**
*/
static public final String TYPED_ELEMENT = "org:omg:model1:TypedElement";
/**
*/
static public final String STRUCTURE_FIELD = "org:omg:model1:StructureField";
/**
*/
static public final String CONSTANT = "org:omg:model1:Constant";
/**
*/
static public final String TAG = "org:omg:model1:Tag";
/**
*/
static public final String BEHAVIOURAL_FEATURE = "org:omg:model1:BehaviouralFeature";
}