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

com.att.scld.grm.v1.FindContainerInstanceRequest Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.10.24 at 10:05:09 AM EDT 
//


package com.att.scld.grm.v1;

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;
import com.att.scld.grm.types.v1.RequestContext;
import com.att.scld.grm.types.v1.VersionDefinition;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://scld.att.com/grm/types/v1}RequestContext">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="version" type="{http://scld.att.com/grm/types/v1}VersionDefinition"/>
 *         <element name="lrmHostAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="routeOffer" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="serviceName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="serviceVersion" type="{http://scld.att.com/grm/types/v1}VersionDefinition"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "version", "lrmHostAddress", "routeOffer", "serviceName", "serviceVersion" }) @XmlRootElement(name = "findContainerInstanceRequest") public class FindContainerInstanceRequest extends RequestContext { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected VersionDefinition version; @XmlElement(required = true) protected String lrmHostAddress; @XmlElement(required = true) protected String routeOffer; @XmlElement(required = true) protected String serviceName; @XmlElement(required = true) protected VersionDefinition serviceVersion; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link VersionDefinition } * */ public VersionDefinition getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link VersionDefinition } * */ public void setVersion(VersionDefinition value) { this.version = value; } /** * Gets the value of the lrmHostAddress property. * * @return * possible object is * {@link String } * */ public String getLrmHostAddress() { return lrmHostAddress; } /** * Sets the value of the lrmHostAddress property. * * @param value * allowed object is * {@link String } * */ public void setLrmHostAddress(String value) { this.lrmHostAddress = value; } /** * Gets the value of the routeOffer property. * * @return * possible object is * {@link String } * */ public String getRouteOffer() { return routeOffer; } /** * Sets the value of the routeOffer property. * * @param value * allowed object is * {@link String } * */ public void setRouteOffer(String value) { this.routeOffer = value; } /** * Gets the value of the serviceName property. * * @return * possible object is * {@link String } * */ public String getServiceName() { return serviceName; } /** * Sets the value of the serviceName property. * * @param value * allowed object is * {@link String } * */ public void setServiceName(String value) { this.serviceName = value; } /** * Gets the value of the serviceVersion property. * * @return * possible object is * {@link VersionDefinition } * */ public VersionDefinition getServiceVersion() { return serviceVersion; } /** * Sets the value of the serviceVersion property. * * @param value * allowed object is * {@link VersionDefinition } * */ public void setServiceVersion(VersionDefinition value) { this.serviceVersion = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy