com.synopsys.integration.coverity.ws.v9.RoleAssignmentDataObj Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coverity-common Show documentation
Show all versions of coverity-common Show documentation
A library for using various capabilities of Coverity.
/**
* 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for roleAssignmentDataObj complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <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>
*
*/
@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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy