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

au.com.agic.apptesting.profiles.configuration.DesiredCapabilities Maven / Gradle / Ivy

package au.com.agic.apptesting.profiles.configuration;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;

/**
 * Represents a {@code } element
 */
public class DesiredCapabilities {

	private List capability = new ArrayList<>();
	private String enabled;
	private String group;

	@XmlElement(name = "capability")
	public List getCapability() {
		return capability;
	}

	public void setCapability(final List capability) {
		this.capability = new ArrayList<>(capability);
	}

	@XmlAttribute
	public String getEnabled() {
		return enabled;
	}

	public void setEnabled(final String enabled) {
		this.enabled = enabled;
	}

	@XmlAttribute
	public String getGroup() {
		return group;
	}

	public void setGroup(final String group) {
		this.group = group;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy