org.opencrx.kernel.base.cci2.CheckPermissionsResult Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// StructureType/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.base.cci2;
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.StructureMapper",
date = "2023-10-28T12:15:35.820070458Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface CheckPermissionsResult
{
// ----------------------------------------------------------------------------
// StructureType/FieldGetSet
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the structure field {@code grantedPermissionsAll}.
* @return A set containing all elements for this structure field.
*/
public java.util.Set getGrantedPermissionsAll(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetSet
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the structure field {@code grantedPermissionsDelete}.
* @return A set containing all elements for this structure field.
*/
public java.util.Set getGrantedPermissionsDelete(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetSet
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the structure field {@code grantedPermissionsRead}.
* @return A set containing all elements for this structure field.
*/
public java.util.Set getGrantedPermissionsRead(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGetSet
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the structure field {@code grantedPermissionsUpdate}.
* @return A set containing all elements for this structure field.
*/
public java.util.Set getGrantedPermissionsUpdate(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code hasDeletePermission}.
* @return The non-null value for structure field {@code hasDeletePermission}.
*/
public boolean isHasDeletePermission(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code hasReadPermission}.
* @return The non-null value for structure field {@code hasReadPermission}.
*/
public boolean isHasReadPermission(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code hasUpdatePermission}.
* @return The non-null value for structure field {@code hasUpdatePermission}.
*/
public boolean isHasUpdatePermission(
);
// ----------------------------------------------------------------------------
// StructureType/Member
// ----------------------------------------------------------------------------
/**
* The structure's members
*/
enum Member {
grantedPermissionsAll
, grantedPermissionsDelete
, grantedPermissionsRead
, grantedPermissionsUpdate
, hasDeletePermission
, hasReadPermission
, hasUpdatePermission
}
// ----------------------------------------------------------------------------
// StructureType/End
// ----------------------------------------------------------------------------
}