org.openmdx.security.authentication1.jpa3.Password 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:05:03 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.security.authentication1.jpa3;
/**
* Class Password
*/
@SuppressWarnings("serial")
public class Password extends org.openmdx.security.authentication1.jpa3.Credential
implements org.openmdx.security.authentication1.cci2.Password
{
/**
* Constructor
*/
public Password(
){
// Implements Serializable
}
// ----------------------------------------------------------------------------
// Instance/Operation
// ----------------------------------------------------------------------------
/**
*/
public org.openmdx.base.cci2.Void change(
org.openmdx.security.authentication1.cci2.PasswordChangeParams in
){
throw new javax.jdo.JDOFatalUserException(
"Behavioural features not handled by data object",
new UnsupportedOperationException("Behavioural feature"),
this
);
}
// ----------------------------------------------------------------------------
// Instance/DeclareValue
// ----------------------------------------------------------------------------
/**
* Attribute password
.
*/
java.lang.String password;
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute password
.
* @return The possibly null value for attribute password
.
*/
public final java.lang.String getPassword(
){
return this.password;
}
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute password
.
* @param password The possibly null new value for attribute password
.
*/
public void setPassword(
java.lang.String password
){
super.openmdxjdoMakeDirty();
this.password =
password;
}
// ----------------------------------------------------------------------------
// 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:05:03 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
}