org.openmdx.security.realm1.cci2.Credential Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Generated by org.openmdx.application.mof.mapping.java.InstanceMapper 2.17.7
// Generated at 2020-11-27T16:04:30.502Z
//
// 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
// ----------------------------------------------------------------------------
}