Package io.getlime.powerauth.soap.v3
Class GetIntegrationListResponse
- java.lang.Object
-
- io.getlime.powerauth.soap.v3.GetIntegrationListResponse
-
public class GetIntegrationListResponse extends java.lang.ObjectJava class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="restrictedAccess" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="items" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="clientToken" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="clientSecret" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGetIntegrationListResponse.ItemsJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<GetIntegrationListResponse.Items>itemsprotected booleanrestrictedAccess
-
Constructor Summary
Constructors Constructor Description GetIntegrationListResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<GetIntegrationListResponse.Items>getItems()Gets the value of the items property.booleanisRestrictedAccess()Gets the value of the restrictedAccess property.voidsetRestrictedAccess(boolean value)Sets the value of the restrictedAccess property.
-
-
-
Field Detail
-
restrictedAccess
protected boolean restrictedAccess
-
items
protected java.util.List<GetIntegrationListResponse.Items> items
-
-
Method Detail
-
isRestrictedAccess
public boolean isRestrictedAccess()
Gets the value of the restrictedAccess property.
-
setRestrictedAccess
public void setRestrictedAccess(boolean value)
Sets the value of the restrictedAccess property.
-
getItems
public java.util.List<GetIntegrationListResponse.Items> getItems()
Gets the value of the items 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 items property.For example, to add a new item, do as follows:
getItems().add(newItem);Objects of the following type(s) are allowed in the list
GetIntegrationListResponse.Items
-
-