org.openmdx.security.realm1.cci2.Credential 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:02 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.security.realm1.cci2;
/**
* Abstract class Credential
*/
public interface Credential
{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute locked
.
* @return The non-null value for attribute locked
.
*/
public boolean isLocked(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute locked
.
* @param locked The non-null new value for attribute locked
.
*/
public void setLocked(
boolean locked
);
// ----------------------------------------------------------------------------
// Instance/Operation
// ----------------------------------------------------------------------------
/**
*/
public org.openmdx.security.realm1.cci2.ValidationResult request(
org.openmdx.security.realm1.cci2.CredentialRequestParams in
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference subject
.
* @return The non-null
value for this reference.
*/
public org.openmdx.security.realm1.cci2.Subject getSubject(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference subject
.
* @param subject The new non-null
value for this reference.
*/
public void setSubject(
org.openmdx.security.realm1.cci2.Subject subject
);
// ----------------------------------------------------------------------------
// Instance/Operation
// ----------------------------------------------------------------------------
/**
*/
public org.openmdx.security.realm1.cci2.ValidationResult validate(
org.openmdx.security.realm1.cci2.CredentialValidateParams in
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}