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

org.ovirt.engine.sdk.entities.OpenStackSubnet Maven / Gradle / Ivy

There is a newer version: 3.6.10.0
Show newest version
//
// Copyright (c) 2012 Red Hat, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//           http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

// *********************************************************************
// ********************* GENERATED CODE - DO NOT MODIFY ****************
// *********************************************************************

package org.ovirt.engine.sdk.entities;

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 OpenStackSubnet complex type. * *

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

 * <complexType name="OpenStackSubnet">
 *   <complexContent>
 *     <extension base="{}BaseResource">
 *       <sequence>
 *         <element name="cidr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ip_version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="gateway" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element ref="{}dns_servers" minOccurs="0"/>
 *         <element ref="{}openstack_network" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OpenStackSubnet", propOrder = { "cidr", "ipVersion", "gateway", "dnsServers", "openstackNetwork" }) public class OpenStackSubnet extends BaseResource { protected String cidr; @XmlElement(name = "ip_version") protected String ipVersion; protected String gateway; @XmlElement(name = "dns_servers") protected DnsServers dnsServers; @XmlElement(name = "openstack_network") protected OpenStackNetwork openstackNetwork; /** * Gets the value of the cidr property. * * @return * possible object is * {@link String } * */ public String getCidr() { return cidr; } /** * Sets the value of the cidr property. * * @param value * allowed object is * {@link String } * */ public void setCidr(String value) { this.cidr = value; } public boolean isSetCidr() { return (this.cidr!= null); } /** * Gets the value of the ipVersion property. * * @return * possible object is * {@link String } * */ public String getIpVersion() { return ipVersion; } /** * Sets the value of the ipVersion property. * * @param value * allowed object is * {@link String } * */ public void setIpVersion(String value) { this.ipVersion = value; } public boolean isSetIpVersion() { return (this.ipVersion!= null); } /** * Gets the value of the gateway property. * * @return * possible object is * {@link String } * */ public String getGateway() { return gateway; } /** * Sets the value of the gateway property. * * @param value * allowed object is * {@link String } * */ public void setGateway(String value) { this.gateway = value; } public boolean isSetGateway() { return (this.gateway!= null); } /** * Gets the value of the dnsServers property. * * @return * possible object is * {@link DnsServers } * */ public DnsServers getDnsServers() { return dnsServers; } /** * Sets the value of the dnsServers property. * * @param value * allowed object is * {@link DnsServers } * */ public void setDnsServers(DnsServers value) { this.dnsServers = value; } public boolean isSetDnsServers() { return (this.dnsServers!= null); } /** * Gets the value of the openstackNetwork property. * * @return * possible object is * {@link OpenStackNetwork } * */ public OpenStackNetwork getOpenstackNetwork() { return openstackNetwork; } /** * Sets the value of the openstackNetwork property. * * @param value * allowed object is * {@link OpenStackNetwork } * */ public void setOpenstackNetwork(OpenStackNetwork value) { this.openstackNetwork = value; } public boolean isSetOpenstackNetwork() { return (this.openstackNetwork!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy