com.synopsys.integration.coverity.ws.v9.UserDataObj Maven / Gradle / Ivy
/**
* coverity-common
*
* Copyright (C) 2018 Black Duck Software, Inc.
* http://www.blackducksoftware.com/
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.synopsys.integration.coverity.ws.v9;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for userDataObj complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="userDataObj">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="roleAssignments" type="{http://ws.coverity.com/v9}roleAssignmentDataObj" maxOccurs="unbounded" minOccurs="0"/>
* <element name="dateCreated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="dateDeleted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="dateModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="disabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="domain" type="{http://ws.coverity.com/v9}serverDomainIdDataObj" minOccurs="0"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="familyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="givenName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="groups" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="local" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="locked" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="passwordChanged" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="superUser" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="userCreated" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="userDeleted" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="userModified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "userDataObj", propOrder = {
"roleAssignments",
"dateCreated",
"dateDeleted",
"dateModified",
"disabled",
"domain",
"email",
"familyName",
"givenName",
"groups",
"local",
"locale",
"locked",
"passwordChanged",
"superUser",
"userCreated",
"userDeleted",
"userModified",
"username"
})
public class UserDataObj {
@XmlElement(nillable = true)
protected List roleAssignments;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dateCreated;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dateDeleted;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dateModified;
protected Boolean disabled;
protected ServerDomainIdDataObj domain;
protected String email;
protected String familyName;
protected String givenName;
@XmlElement(nillable = true)
protected List groups;
protected Boolean local;
protected String locale;
protected Boolean locked;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar passwordChanged;
protected Boolean superUser;
protected String userCreated;
protected String userDeleted;
protected String userModified;
protected String username;
/**
* Gets the value of the roleAssignments 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 roleAssignments property.
*
*
* For example, to add a new item, do as follows:
*
* getRoleAssignments().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RoleAssignmentDataObj }
*/
public List getRoleAssignments() {
if (roleAssignments == null) {
roleAssignments = new ArrayList();
}
return this.roleAssignments;
}
/**
* Gets the value of the dateCreated property.
* @return possible object is
* {@link XMLGregorianCalendar }
*/
public XMLGregorianCalendar getDateCreated() {
return dateCreated;
}
/**
* Sets the value of the dateCreated property.
* @param value allowed object is
* {@link XMLGregorianCalendar }
*/
public void setDateCreated(XMLGregorianCalendar value) {
this.dateCreated = value;
}
/**
* Gets the value of the dateDeleted property.
* @return possible object is
* {@link XMLGregorianCalendar }
*/
public XMLGregorianCalendar getDateDeleted() {
return dateDeleted;
}
/**
* Sets the value of the dateDeleted property.
* @param value allowed object is
* {@link XMLGregorianCalendar }
*/
public void setDateDeleted(XMLGregorianCalendar value) {
this.dateDeleted = value;
}
/**
* Gets the value of the dateModified property.
* @return possible object is
* {@link XMLGregorianCalendar }
*/
public XMLGregorianCalendar getDateModified() {
return dateModified;
}
/**
* Sets the value of the dateModified property.
* @param value allowed object is
* {@link XMLGregorianCalendar }
*/
public void setDateModified(XMLGregorianCalendar value) {
this.dateModified = value;
}
/**
* Gets the value of the disabled property.
* @return possible object is
* {@link Boolean }
*/
public Boolean isDisabled() {
return disabled;
}
/**
* Sets the value of the disabled property.
* @param value allowed object is
* {@link Boolean }
*/
public void setDisabled(Boolean value) {
this.disabled = value;
}
/**
* Gets the value of the domain property.
* @return possible object is
* {@link ServerDomainIdDataObj }
*/
public ServerDomainIdDataObj getDomain() {
return domain;
}
/**
* Sets the value of the domain property.
* @param value allowed object is
* {@link ServerDomainIdDataObj }
*/
public void setDomain(ServerDomainIdDataObj value) {
this.domain = value;
}
/**
* Gets the value of the email property.
* @return possible object is
* {@link String }
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
* @param value allowed object is
* {@link String }
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the familyName property.
* @return possible object is
* {@link String }
*/
public String getFamilyName() {
return familyName;
}
/**
* Sets the value of the familyName property.
* @param value allowed object is
* {@link String }
*/
public void setFamilyName(String value) {
this.familyName = value;
}
/**
* Gets the value of the givenName property.
* @return possible object is
* {@link String }
*/
public String getGivenName() {
return givenName;
}
/**
* Sets the value of the givenName property.
* @param value allowed object is
* {@link String }
*/
public void setGivenName(String value) {
this.givenName = value;
}
/**
* Gets the value of the groups 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 groups property.
*
*
* For example, to add a new item, do as follows:
*
* getGroups().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*/
public List getGroups() {
if (groups == null) {
groups = new ArrayList();
}
return this.groups;
}
/**
* Gets the value of the local property.
* @return possible object is
* {@link Boolean }
*/
public Boolean isLocal() {
return local;
}
/**
* Sets the value of the local property.
* @param value allowed object is
* {@link Boolean }
*/
public void setLocal(Boolean value) {
this.local = value;
}
/**
* Gets the value of the locale property.
* @return possible object is
* {@link String }
*/
public String getLocale() {
return locale;
}
/**
* Sets the value of the locale property.
* @param value allowed object is
* {@link String }
*/
public void setLocale(String value) {
this.locale = value;
}
/**
* Gets the value of the locked property.
* @return possible object is
* {@link Boolean }
*/
public Boolean isLocked() {
return locked;
}
/**
* Sets the value of the locked property.
* @param value allowed object is
* {@link Boolean }
*/
public void setLocked(Boolean value) {
this.locked = value;
}
/**
* Gets the value of the passwordChanged property.
* @return possible object is
* {@link XMLGregorianCalendar }
*/
public XMLGregorianCalendar getPasswordChanged() {
return passwordChanged;
}
/**
* Sets the value of the passwordChanged property.
* @param value allowed object is
* {@link XMLGregorianCalendar }
*/
public void setPasswordChanged(XMLGregorianCalendar value) {
this.passwordChanged = value;
}
/**
* Gets the value of the superUser property.
* @return possible object is
* {@link Boolean }
*/
public Boolean isSuperUser() {
return superUser;
}
/**
* Sets the value of the superUser property.
* @param value allowed object is
* {@link Boolean }
*/
public void setSuperUser(Boolean value) {
this.superUser = value;
}
/**
* Gets the value of the userCreated property.
* @return possible object is
* {@link String }
*/
public String getUserCreated() {
return userCreated;
}
/**
* Sets the value of the userCreated property.
* @param value allowed object is
* {@link String }
*/
public void setUserCreated(String value) {
this.userCreated = value;
}
/**
* Gets the value of the userDeleted property.
* @return possible object is
* {@link String }
*/
public String getUserDeleted() {
return userDeleted;
}
/**
* Sets the value of the userDeleted property.
* @param value allowed object is
* {@link String }
*/
public void setUserDeleted(String value) {
this.userDeleted = value;
}
/**
* Gets the value of the userModified property.
* @return possible object is
* {@link String }
*/
public String getUserModified() {
return userModified;
}
/**
* Sets the value of the userModified property.
* @param value allowed object is
* {@link String }
*/
public void setUserModified(String value) {
this.userModified = value;
}
/**
* Gets the value of the username property.
* @return possible object is
* {@link String }
*/
public String getUsername() {
return username;
}
/**
* Sets the value of the username property.
* @param value allowed object is
* {@link String }
*/
public void setUsername(String value) {
this.username = value;
}
}