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

com.xerox.amazonws.typica.loadbalance.jaxb.CreateLoadBalancer Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2010.10.06 at 09:30:17 PM CEST 
//


package com.xerox.amazonws.typica.loadbalance.jaxb;

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 name="LoadBalancerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Listeners" type="{http://elasticloadbalancing.amazonaws.com/doc/2009-05-15/}Listeners"/>
 *         <element name="AvailabilityZones" type="{http://elasticloadbalancing.amazonaws.com/doc/2009-05-15/}AvailabilityZones"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "loadBalancerName", "listeners", "availabilityZones" }) @XmlRootElement(name = "CreateLoadBalancer") public class CreateLoadBalancer { @XmlElement(name = "LoadBalancerName", required = true) protected String loadBalancerName; @XmlElement(name = "Listeners", required = true) protected Listeners listeners; @XmlElement(name = "AvailabilityZones", required = true) protected AvailabilityZones availabilityZones; /** * Gets the value of the loadBalancerName property. * * @return * possible object is * {@link String } * */ public String getLoadBalancerName() { return loadBalancerName; } /** * Sets the value of the loadBalancerName property. * * @param value * allowed object is * {@link String } * */ public void setLoadBalancerName(String value) { this.loadBalancerName = value; } /** * Gets the value of the listeners property. * * @return * possible object is * {@link Listeners } * */ public Listeners getListeners() { return listeners; } /** * Sets the value of the listeners property. * * @param value * allowed object is * {@link Listeners } * */ public void setListeners(Listeners value) { this.listeners = value; } /** * Gets the value of the availabilityZones property. * * @return * possible object is * {@link AvailabilityZones } * */ public AvailabilityZones getAvailabilityZones() { return availabilityZones; } /** * Sets the value of the availabilityZones property. * * @param value * allowed object is * {@link AvailabilityZones } * */ public void setAvailabilityZones(AvailabilityZones value) { this.availabilityZones = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy