org.openmdx.base.jpa3.Provider 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.base.jpa3;
/**
* Class Provider
*/
@SuppressWarnings("serial")
public class Provider extends org.w3c.jpa3.AbstractObject
implements org.openmdx.base.cci2.Provider
{
/**
* Constructor
*/
public Provider(
){
// 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;
}
// ----------------------------------------------------------------------------
// Instance/ReferenceDeclaration
// ----------------------------------------------------------------------------
/**
* Instance referenced by authority
.
*/
java.lang.String authority;
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference authority
.
* @return The non-null
value for this reference.
*/
public org.openmdx.base.cci2.Authority getAuthority(
) {
throw new javax.jdo.JDOFatalUserException(
"This signature is not handled by data object",
new UnsupportedOperationException("This signature is not handled by data object. Use getAuthority_Id()."),
this
);
}
public java.lang.String getAuthority_Id(
) {
return this.authority;
}
// ----------------------------------------------------------------------------
// Instance/ReferenceGet0_nWithQuery
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the reference segment
.
* @return A set containing all the elements for this reference.
*/
public org.openmdx.base.cci2.ProviderProvidesSegment.Segment getSegment(
){
throw new javax.jdo.JDOFatalUserException(
"This signature is not handled by data object",
new UnsupportedOperationException("This signature is not handled by data object. Use query on composites."),
this
);
}
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference authority
.
* @param authority The new non-null
value for this reference.
*/
public void setAuthority(
org.openmdx.base.jpa3.Authority authority
){
throw new javax.jdo.JDOFatalUserException(
"Typed set not handled by data object",
new UnsupportedOperationException("Use setAuthority_Id() instead."),
this
);
}
public void setAuthority_Id(
java.lang.String authority
) {
super.openmdxjdoMakeDirty();
this.authority = authority;
}
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
}