org.openmdx.database2.jpa3.Sequence Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Mon Mar 09 17:04:35 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.database2.jpa3;
/**
* Class Sequence
*/
@SuppressWarnings("serial")
public class Sequence extends org.w3c.jpa3.AbstractObject
implements org.openmdx.database2.cci2.Sequence
{
/**
* Constructor
*/
public Sequence(
){
// Implements Serializable
}
/**
* The the object's JDO identity key
*/
private java.lang.String openmdxjdoIdentity;
/**
* Retrieve the object's JDO identity key
* @return the value of the object's JDO identity key
*/
@Override
protected java.lang.String getOpenmdxjdoIdentity(
){
return this.openmdxjdoIdentity;
}
/**
* Set the object's JDO identity key
*/
@Override
protected void setOpenmdxjdoIdentity(
String value
){
this.openmdxjdoIdentity = value;
}
/**
* Slice holder
*/
private java.util.TreeMap openmdxjdoSlices = new java.util.TreeMap();
@SuppressWarnings("unchecked")
protected final java.util.SortedMap openmdxjdoGetSlices(
){
return (java.util.SortedMap)this.openmdxjdoSlices;
}
// ----------------------------------------------------------------------------
// Instance/Operation
// ----------------------------------------------------------------------------
/**
*/
public org.openmdx.database2.cci2.NextValueResult nextValue(
){
throw new javax.jdo.JDOFatalUserException(
"Behavioural features not handled by data object",
new UnsupportedOperationException("Behavioural feature"),
this
);
}
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Mon Mar 09 17:04:35 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
// ----------------------------------------------------------------------------
// Instance/ReferenceDeclaration
// ----------------------------------------------------------------------------
/**
* Instance referenced by segment
.
*/
java.lang.String segment;
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference segment
.
* @param segment The new non-null
value for this reference.
*/
public void setSegment(
org.openmdx.database2.jpa3.Segment segment
){
throw new javax.jdo.JDOFatalUserException(
"Typed set not handled by data object",
new UnsupportedOperationException("Use setSegment_Id() instead."),
this
);
}
public void setSegment_Id(
java.lang.String segment
) {
super.openmdxjdoMakeDirty();
this.segment = segment;
}
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
}