org.plasma.sdo.profile.SDOTemporal 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.Temporal;
/**
*
* Specifies the various notions of time which are relevant for temporal data stores
*
* @author Plasma-Team
* @version 2.0.0
*/
public class SDOTemporal extends Stereotype
implements Temporal
{
public static final String BASE__PROPERTY = "base_Property";
public static final String TYPE = "type";
private Property base_Property;
private TemporalType type;
public Property getBase_Property() {
return this.base_Property;
}
public void setBase_Property(Property value) {
this.base_Property = value;
}
public TemporalType getType() {
return this.type;
}
public void setType(TemporalType value) {
this.type = value;
}
}