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

org.geojsf.xml.geoserver.Postgis Maven / Gradle / Ivy

The newest version!

package org.geojsf.xml.geoserver;

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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.geojsf.org/geoserver}connection"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "connection" }) @XmlRootElement(name = "postgis") public class Postgis implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected Connection connection; /** * Gets the value of the connection property. * * @return * possible object is * {@link Connection } * */ public Connection getConnection() { return connection; } /** * Sets the value of the connection property. * * @param value * allowed object is * {@link Connection } * */ public void setConnection(Connection value) { this.connection = value; } public boolean isSetConnection() { return (this.connection!= null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy