org.plasma.sdo.profile.SDOKey Maven / Gradle / Ivy
//==============================================================================
//
// This software artifact was generated using PlasmaSDO
// provisioning tools.
//
//==============================================================================
package org.plasma.sdo.profile;
import fUML.Syntax.Classes.Kernel.*;
import org.modeldriven.fuml.repository.ext.Stereotype;
import org.plasma.sdo.Key;
/**
*
* This stereotype tags or annotates a UML property as representing some type of key within a data store, data transfer or transient storage medium.
*
* @author Plasma-Team
* @version 1.1.5
*/
public class SDOKey extends Stereotype
implements Key
{
/**
* Specifies the type of key
*/
public static final String TYPE = "type";
public static final String BASE__PROPERTY = "base_Property";
/**
* Specifies the type of key
*/
private KeyType type;
private Property base_Property;
public KeyType getType() {
return this.type;
}
public void setType(KeyType value) {
this.type = value;
}
public Property getBase_Property() {
return this.base_Property;
}
public void setBase_Property(Property value) {
this.base_Property = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy