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

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

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

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

import javax.xml.bind.annotation.XmlElement;

/**
 * Represents a collection of URL Mappings
 */
public class URLMappings {

	private List featureGroups = new ArrayList<>();

	@XmlElement(name = "featureGroup")
	public List getFeatureGroups() {
		return featureGroups;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy