com.jkoolcloud.tnt4j.streams.configure.jaxb.Stream Maven / Gradle / Ivy
/*
* Copyright 2014-2023 JKOOL, LLC.
*
* 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.
*/
package com.jkoolcloud.tnt4j.streams.configure.jaxb;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Generated;
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 Stream complex type.
*
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Stream">
* <complexContent>
* <extension base="{}Stream">
* <redefine>
* <complexType name="Stream">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice maxOccurs="unbounded">
* <element name="property" type="{}StreamProperty" maxOccurs="unbounded" minOccurs="0"/>
* <element name="parser-ref" type="{}ParserReference" maxOccurs="unbounded" minOccurs="0"/>
* <element name="reference" type="{}Reference" maxOccurs="unbounded" minOccurs="0"/>
* <element name="tnt4j-properties" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="property" type="{}Property" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </choice>
* <attGroup ref="{}EntityAttributeGroup"/>
* </restriction>
* </complexContent>
* </complexType>
* </redefine>
* <sequence>
* <element name="scenario" type="{}Scenario" maxOccurs="unbounded"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Stream", propOrder = { "scenario" })
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2017-05-09T06:14:43+03:00", comments = "JAXB RI v2.2.4-2")
public class Stream extends OriginalStream {
@XmlElement(required = true)
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2017-05-09T06:14:43+03:00", comments = "JAXB RI v2.2.4-2")
protected List scenario;
/**
* Gets the value of the scenario property.
*
*
* This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to
* the returned list will be present inside the JAXB object. This is why there is not a set
method for
* the scenario property.
*
*
* For example, to add a new item, do as follows:
*
*
* getScenario().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list {@link Scenario }
*
*
*/
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2017-05-09T06:14:43+03:00", comments = "JAXB RI v2.2.4-2")
public List getScenario() {
if (scenario == null) {
scenario = new ArrayList();
}
return this.scenario;
}
public void addRequest(Scenario scr) {
getScenario().add(scr);
}
}