com.exactpro.sf.configuration.services.ServiceDefinition Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.3-b01-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.05.31 at 01:07:10 PM MSK
//
package com.exactpro.sf.configuration.services;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ServiceDefinition complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ServiceDefinition">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="className" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="settingsClassName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="dictionary" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="dictionaryValidatorFactoryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ServiceDefinition", propOrder = {
"className",
"settingsClassName",
"description",
"dictionary",
"dictionaryValidatorFactoryName"
})
public class ServiceDefinition {
@XmlElement(required = true)
protected String className;
@XmlElement(required = true)
protected String settingsClassName;
protected String description;
protected String dictionary;
protected String dictionaryValidatorFactoryName;
@XmlAttribute
protected String name;
/**
* Gets the value of the className property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClassName() {
return className;
}
/**
* Sets the value of the className property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClassName(String value) {
this.className = value;
}
/**
* Gets the value of the settingsClassName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSettingsClassName() {
return settingsClassName;
}
/**
* Sets the value of the settingsClassName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSettingsClassName(String value) {
this.settingsClassName = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the dictionary property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDictionary() {
return dictionary;
}
/**
* Sets the value of the dictionary property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDictionary(String value) {
this.dictionary = value;
}
/**
* Gets the value of the dictionaryValidatorFactoryName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDictionaryValidatorFactoryName() {
return dictionaryValidatorFactoryName;
}
/**
* Sets the value of the dictionaryValidatorFactoryName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDictionaryValidatorFactoryName(String value) {
this.dictionaryValidatorFactoryName = value;
}
/**
* 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;
}
}