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

com.aeontronix.enhancedmule.tools.anypoint.alert.AlertCondition Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
/*
 * Copyright (c) Aeontronix 2019
 */

package com.aeontronix.enhancedmule.tools.anypoint.alert;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class AlertCondition {
    @JsonProperty
    private String type;
    @JsonProperty
    private List resources;
    @JsonProperty
    private String resourceType;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public List getResources() {
        return resources;
    }

    public void setResources(List resources) {
        this.resources = resources;
    }

    public String getResourceType() {
        return resourceType;
    }

    public void setResourceType(String resourceType) {
        this.resourceType = resourceType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy