All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.coverity.ws.v5.GetRole Maven / Gradle / Ivy

The newest version!

package com.coverity.ws.v5;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for getRole complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="getRole">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="roleId" type="{http://ws.coverity.com/v5}roleIdDataObj" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "getRole", propOrder = { "roleId" }) public class GetRole { protected RoleIdDataObj roleId; /** * 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy