package com.coverity.ws.v9; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for roleAssignmentDataObj complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="roleAssignmentDataObj"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="groupId" type="{http://ws.coverity.com/v9}groupIdDataObj" minOccurs="0"/> * <element name="roleAssignmentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="roleId" type="{http://ws.coverity.com/v9}roleIdDataObj" minOccurs="0"/> * <element name="type" 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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "roleAssignmentDataObj", propOrder = { "groupId", "roleAssignmentType", "roleId", "type", "username" }) public class RoleAssignmentDataObj { protected GroupIdDataObj groupId; protected String roleAssignmentType; protected RoleIdDataObj roleId; protected String type; protected String username; /** * Gets the value of the groupId property. * * @return * possible object is * {@link GroupIdDataObj } * */ public GroupIdDataObj getGroupId() { return groupId; } /** * Sets the value of the groupId property. * * @param value * allowed object is * {@link GroupIdDataObj } * */ public void setGroupId(GroupIdDataObj value) { this.groupId = value; } /** * Gets the value of the roleAssignmentType property. * * @return * possible object is * {@link String } * */ public String getRoleAssignmentType() { return roleAssignmentType; } /** * Sets the value of the roleAssignmentType property. * * @param value * allowed object is * {@link String } * */ public void setRoleAssignmentType(String value) { this.roleAssignmentType = value; } /** * Gets the value of the roleId property. * * @return * possible object is * {@link RoleIdDataObj } * */ public RoleIdDataObj getRoleId() { return roleId; } /** * Sets the value of the roleId property. * * @param value * allowed object is * {@link RoleIdDataObj } * */ public void setRoleId(RoleIdDataObj value) { this.roleId = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = 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; } }