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

com.tibco.xmlns.applicationmanagement.Monitor Maven / Gradle / Ivy

Go to download

The targetNamespace of this schema is "http://www.tibco.com/xmlns/ApplicationManagement"

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.01.23 at 10:11:20 AM CET 
//


package com.tibco.xmlns.applicationmanagement;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.tibco.com/xmlns/ApplicationManagement}rulebases" minOccurs="0"/>
 *         <element ref="{http://www.tibco.com/xmlns/ApplicationManagement}events" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "rulebases", "events" }) @XmlRootElement(name = "monitor") public class Monitor { protected Rulebases rulebases; protected Events events; /** * Gets the value of the rulebases property. * * @return * possible object is * {@link Rulebases } * */ public Rulebases getRulebases() { return rulebases; } /** * Sets the value of the rulebases property. * * @param value * allowed object is * {@link Rulebases } * */ public void setRulebases(Rulebases value) { this.rulebases = value; } /** * Gets the value of the events property. * * @return * possible object is * {@link Events } * */ public Events getEvents() { return events; } /** * Sets the value of the events property. * * @param value * allowed object is * {@link Events } * */ public void setEvents(Events value) { this.events = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy