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

com.genexus.gxserver.client.services.contracts.LongProp Maven / Gradle / Ivy

The newest version!

package com.genexus.gxserver.client.services.contracts;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for LongProp complex type. * *

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

 * <complexType name="LongProp">
 *   <complexContent>
 *     <extension base="{http://schemas.datacontract.org/2004/07/GeneXus.Server.Contracts}TransferProp">
 *       <sequence>
 *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LongProp", propOrder = { "value" }) public class LongProp extends TransferProp { @XmlElement(name = "Value") protected Long value; /** * Gets the value of the value property. * * @return * possible object is * {@link Long } * */ public Long getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link Long } * */ public void setValue(Long value) { this.value = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy