org.citrusframework.xml.actions.ExpectTimeout Maven / Gradle / Ivy
/*
* Copyright the original author or authors.
*
* 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 org.citrusframework.xml.actions;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.citrusframework.TestActionBuilder;
import org.citrusframework.actions.ReceiveTimeoutAction;
/**
* @author Christoph Deppisch
*/
@XmlRootElement(name = "expect-timeout")
public class ExpectTimeout implements TestActionBuilder {
private final ReceiveTimeoutAction.Builder builder = new ReceiveTimeoutAction.Builder();
@XmlAttribute
public ExpectTimeout setWait(long milliseconds) {
builder.timeout(milliseconds);
return this;
}
@XmlAttribute
public ExpectTimeout setSelect(String value) {
builder.selector(value);
return this;
}
@XmlElement
public ExpectTimeout setSelector(Selector selector) {
if (selector.selectorValue != null) {
builder.selector(selector.selectorValue);
}
if (selector.elements != null) {
Map selectorElements = new HashMap<>();
for (Selector.Element element : selector.elements) {
selectorElements.put(element.name, element.value);
}
builder.selector(selectorElements);
}
return this;
}
@XmlAttribute(required = true)
public ExpectTimeout setEndpoint(String endpointUri) {
builder.endpoint(endpointUri);
return this;
}
@Override
public ReceiveTimeoutAction build() {
return builder.build();
}
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"elements",
"selectorValue"
})
public static class Selector {
@XmlElement(name = "element")
protected List elements;
@XmlElement(name = "value")
protected String selectorValue;
public List getElements() {
if (elements == null) {
elements = new ArrayList<>();
}
return this.elements;
}
public String getSelectorValue() {
return selectorValue;
}
public void setSelectorValue(String value) {
this.selectorValue = value;
}
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Element {
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "value", required = true)
protected String value;
public String getName() {
return name;
}
public void setName(String value) {
this.name = value;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
}
}