com.consol.citrus.model.testcase.kubernetes.WatchPodsModel Maven / Gradle / Ivy
The newest version!
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 generiert
// Siehe https://javaee.github.io/jaxb-v2/
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2024.04.24 um 05:13:18 PM CEST
//
package com.consol.citrus.model.testcase.kubernetes;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für anonymous complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.citrusframework.org/schema/kubernetes/testcase}description" minOccurs="0"/>
* <element name="validate" type="{http://www.citrusframework.org/schema/kubernetes/testcase}ValidateCommandResultType" minOccurs="0"/>
* </sequence>
* <attribute name="client" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"description",
"validate"
})
@XmlRootElement(name = "watch-pods")
public class WatchPodsModel {
protected String description;
protected ValidateCommandResultType validate;
@XmlAttribute(name = "client")
protected String client;
@XmlAttribute(name = "label")
protected String label;
@XmlAttribute(name = "namespace")
protected String namespace;
@XmlAttribute(name = "name")
protected String name;
/**
* Ruft den Wert der description-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Legt den Wert der description-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Ruft den Wert der validate-Eigenschaft ab.
*
* @return
* possible object is
* {@link ValidateCommandResultType }
*
*/
public ValidateCommandResultType getValidate() {
return validate;
}
/**
* Legt den Wert der validate-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ValidateCommandResultType }
*
*/
public void setValidate(ValidateCommandResultType value) {
this.validate = value;
}
/**
* Ruft den Wert der client-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClient() {
return client;
}
/**
* Legt den Wert der client-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClient(String value) {
this.client = value;
}
/**
* Ruft den Wert der label-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Legt den Wert der label-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Ruft den Wert der namespace-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespace() {
return namespace;
}
/**
* Legt den Wert der namespace-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespace(String value) {
this.namespace = value;
}
/**
* Ruft den Wert der name-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Legt den Wert der name-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy