package com.newrelic.apm.enterprise.bmc; import javax.xml.bind.annotation.*; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="filterName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="context" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="callbackURL" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="reliable" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "filterName", "context", "callbackURL", "reliable" }) @XmlRootElement(name = "Subscribe") public class Subscribe { @XmlElement(required = true, nillable = true) protected String filterName; @XmlElement(required = true, nillable = true) protected String context; @XmlElement(required = true, nillable = true) protected String callbackURL; protected boolean reliable; /** * Gets the value of the filterName property. * * @return * possible object is * {@link String } * */ public String getFilterName() { return filterName; } /** * Sets the value of the filterName property. * * @param value * allowed object is * {@link String } * */ public void setFilterName(String value) { this.filterName = value; } /** * Gets the value of the context property. * * @return * possible object is * {@link String } * */ public String getContext() { return context; } /** * Sets the value of the context property. * * @param value * allowed object is * {@link String } * */ public void setContext(String value) { this.context = value; } /** * Gets the value of the callbackURL property. * * @return * possible object is * {@link String } * */ public String getCallbackURL() { return callbackURL; } /** * Sets the value of the callbackURL property. * * @param value * allowed object is * {@link String } * */ public void setCallbackURL(String value) { this.callbackURL = value; } /** * Gets the value of the reliable property. * */ public boolean isReliable() { return reliable; } /** * Sets the value of the reliable property. * */ public void setReliable(boolean value) { this.reliable = value; } }