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

org.allurefw.report.DefectsWidgetItem Maven / Gradle / Ivy

The newest version!

package org.allurefw.report;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DefectsWidgetItem complex type. * *

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

 * <complexType name="DefectsWidgetItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="uid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="count" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DefectsWidgetItem", propOrder = { }) public class DefectsWidgetItem implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected String uid; @XmlElement(required = true) protected String message; protected long count; /** * Gets the value of the uid property. * * @return * possible object is * {@link String } * */ public String getUid() { return uid; } /** * Sets the value of the uid property. * * @param value * allowed object is * {@link String } * */ public void setUid(String value) { this.uid = value; } /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * Gets the value of the count property. * */ public long getCount() { return count; } /** * Sets the value of the count property. * */ public void setCount(long value) { this.count = value; } public DefectsWidgetItem withUid(String value) { setUid(value); return this; } public DefectsWidgetItem withMessage(String value) { setMessage(value); return this; } public DefectsWidgetItem withCount(long value) { setCount(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy