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

com.coverity.ws.v5.DeleteGroup 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 deleteGroup complex type. * *

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy