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

com.omgm.speedy.eps.soap.model.ResultSiteEx Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

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


/**
 * 

Java class for resultSiteEx complex type. * *

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

 * <complexType name="resultSiteEx">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="exactMatch" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="site" type="{http://ver01.eps.speedy.sirma.com/}resultSite" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "resultSiteEx", propOrder = { "exactMatch", "site" }) public class ResultSiteEx { protected boolean exactMatch; protected ResultSite site; /** * Gets the value of the exactMatch property. * */ public boolean isExactMatch() { return exactMatch; } /** * Sets the value of the exactMatch property. * */ public void setExactMatch(boolean value) { this.exactMatch = value; } /** * Gets the value of the site property. * * @return * possible object is * {@link ResultSite } * */ public ResultSite getSite() { return site; } /** * Sets the value of the site property. * * @param value * allowed object is * {@link ResultSite } * */ public void setSite(ResultSite value) { this.site = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy