io.getlime.powerauth.soap.v3.GetIntegrationListResponse Maven / Gradle / Ivy
Show all versions of powerauth-java-client-spring Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.04.30 at 04:16:21 PM CEST
//
package io.getlime.powerauth.soap.v3;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java 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>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"restrictedAccess",
"items"
})
@XmlRootElement(name = "GetIntegrationListResponse")
public class GetIntegrationListResponse {
protected boolean restrictedAccess;
protected List items;
/**
* Gets the value of the restrictedAccess property.
*
*/
public boolean isRestrictedAccess() {
return restrictedAccess;
}
/**
* Sets the value of the restrictedAccess property.
*
*/
public void setRestrictedAccess(boolean value) {
this.restrictedAccess = value;
}
/**
* 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 set
method 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
* {@link GetIntegrationListResponse.Items }
*
*
*/
public List getItems() {
if (items == null) {
items = new ArrayList();
}
return this.items;
}
/**
* Java 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="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>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"id",
"name",
"clientToken",
"clientSecret"
})
public static class Items {
@XmlElement(required = true)
protected String id;
protected String name;
@XmlElement(required = true)
protected String clientToken;
@XmlElement(required = true)
protected String clientSecret;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the clientToken property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClientToken() {
return clientToken;
}
/**
* Sets the value of the clientToken property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClientToken(String value) {
this.clientToken = value;
}
/**
* Gets the value of the clientSecret property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClientSecret() {
return clientSecret;
}
/**
* Sets the value of the clientSecret property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClientSecret(String value) {
this.clientSecret = value;
}
}
}