Class Group
java.lang.Object
org.apache.nifi.authorization.file.tenants.generated.Group
Java class for Group complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Group">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="user" maxOccurs="unbounded" minOccurs="0">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="identifier">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<minLength value="1"/>
<pattern value=".*[^\s].*"/>
</restriction>
</simpleType>
</attribute>
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
<attribute name="identifier">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<minLength value="1"/>
<pattern value=".*[^\s].*"/>
</restriction>
</simpleType>
</attribute>
<attribute name="name">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<minLength value="1"/>
<pattern value=".*[^\s].*"/>
</restriction>
</simpleType>
</attribute>
</restriction>
</complexContent>
</complexType>
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the identifier property.getName()Gets the value of the name property.getUser()Gets the value of the user property.voidsetIdentifier(String value) Sets the value of the identifier property.voidSets the value of the name property.
-
Field Details
-
user
-
identifier
-
name
-
-
Constructor Details
-
Group
public Group()
-
-
Method Details
-
getUser
Gets the value of the user property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the user property.For example, to add a new item, do as follows:
getUser().add(newItem);
Objects of the following type(s) are allowed in the list
Group.User- Returns:
- The value of the user property.
-
getIdentifier
Gets the value of the identifier property.- Returns:
- possible object is
String
-
setIdentifier
Sets the value of the identifier property.- Parameters:
value- allowed object isString
-
getName
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
Sets the value of the name property.- Parameters:
value- allowed object isString
-