org.plasma.provisioning.rdb.mysql.any.GlobalVariable Maven / Gradle / Ivy
package org.plasma.provisioning.rdb.mysql.any;
import org.plasma.sdo.PlasmaDataObject;
/**
* Generated interface representing the domain model entity GlobalVariable. This SDO interface directly reflects the
* class (single or multiple) inheritance lattice of the source domain model(s) and is part of namespace http://org.plasma/sdo/mysql/any defined within the Configuration.
*
*
* Data Store Mapping:
* Corresponds to the physical data store entity GLOBAL_VARIABLES.
*
*
*/
public interface GlobalVariable extends PlasmaDataObject
{
/** The SDO namespace URI associated with the Type for this class. */
public static final String NAMESPACE_URI = "http://org.plasma/sdo/mysql/any";
/** The entity or Type logical name associated with this class. */
public static final String TYPE_NAME_GLOBAL_VARIABLE = "GlobalVariable";
/** The declared logical property names for this Type. */
public static enum PROPERTY {
/**
* Represents the logical Property name which is part of the Type GlobalVariable.
*
*
* Data Store Mapping:
* Corresponds to the physical data store element GLOBAL_VARIABLES.VARIABLE_NAME.
*/
name,
/**
* Represents the logical Property value which is part of the Type GlobalVariable.
*
*
* Data Store Mapping:
* Corresponds to the physical data store element GLOBAL_VARIABLES.VARIABLE_VALUE.
*/
value
}
/**
* Returns true if the name property is set.
* @return true if the name property is set.
*/
public boolean isSetName();
/**
* Unsets the name property, the value
* of the property of the object being set to the property's
* default value. The property will no longer be
* considered set.
*/
public void unsetName();
/**
* Returns the value of the name property.
* @return the value of the name property.
*/
public String getName();
/**
* Sets the value of the name property to the given value.
*/
public void setName(String value);
/**
* Returns true if the value property is set.
* @return true if the value property is set.
*/
public boolean isSetValue();
/**
* Unsets the value property, the value
* of the property of the object being set to the property's
* default value. The property will no longer be
* considered set.
*/
public void unsetValue();
/**
* Returns the value of the value property.
* @return the value of the value property.
*/
public String getValue();
/**
* Sets the value of the value property to the given value.
*/
public void setValue(String value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy