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

com.microsoft.applicationinsights.internal.config.ParamExcludedTypeXmlElement Maven / Gradle / Ivy

package com.microsoft.applicationinsights.internal.config;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;

/**
 * This is the class for binding the xml array list of {@code }
 */
public class ParamExcludedTypeXmlElement {

    public List getExcludedType() {
        return excludedType;
    }

    @XmlElement(name = "ExcludedType")
    public void setExcludedType(List excludedType) {
        this.excludedType = excludedType;
    }

    private List excludedType;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy