Package io.adminshell.aas.v3.model.impl
Class DefaultSubjectAttributes
- java.lang.Object
-
- io.adminshell.aas.v3.model.impl.DefaultSubjectAttributes
-
- All Implemented Interfaces:
SubjectAttributes
public class DefaultSubjectAttributes extends java.lang.Object implements SubjectAttributes
Default implementation of package io.adminshell.aas.v3.model.SubjectAttributes A set of data elements that further classifies a specific subject.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDefaultSubjectAttributes.BuilderThis builder class can be used to construct a DefaultSubjectAttributes bean.
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<DataElement>subjectAttributes
-
Constructor Summary
Constructors Constructor Description DefaultSubjectAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<DataElement>getSubjectAttributes()A data element that further classifies a specific subject.inthashCode()voidsetSubjectAttributes(java.util.List<DataElement> subjectAttributes)A data element that further classifies a specific subject.
-
-
-
Field Detail
-
subjectAttributes
protected java.util.List<DataElement> subjectAttributes
-
-
Method Detail
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
getSubjectAttributes
public java.util.List<DataElement> getSubjectAttributes()
Description copied from interface:SubjectAttributesA data element that further classifies a specific subject. Constraint AASs-015: The data element SubjectAttributes/subjectAttribute shall be part of the submodel that is referenced within the 'selectableSubjectAttributes' attribute of 'AccessControl'. More information under https://admin-shell.io/aas/3/0/RC01/SubjectAttributes/subjectAttribute- Specified by:
getSubjectAttributesin interfaceSubjectAttributes- Returns:
- Returns the List of DataElements for the property subjectAttributes.
-
setSubjectAttributes
public void setSubjectAttributes(java.util.List<DataElement> subjectAttributes)
Description copied from interface:SubjectAttributesA data element that further classifies a specific subject. Constraint AASs-015: The data element SubjectAttributes/subjectAttribute shall be part of the submodel that is referenced within the 'selectableSubjectAttributes' attribute of 'AccessControl'. More information under https://admin-shell.io/aas/3/0/RC01/SubjectAttributes/subjectAttribute- Specified by:
setSubjectAttributesin interfaceSubjectAttributes- Parameters:
subjectAttributes- desired value for the property subjectAttributes.
-
-