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

com.heanbian.block.zabbix.api.ZabbixPreprocessing Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.heanbian.block.zabbix.api;

import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;

@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)
public class ZabbixPreprocessing {

	private String type;

	private String params;

	private String errorHandler;

	private String errorHandlerParams;

	public String getType() {
		return type;
	}

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

	public String getParams() {
		return params;
	}

	public ZabbixPreprocessing setParams(String params) {
		this.params = params;
		return this;
	}

	public String getErrorHandler() {
		return errorHandler;
	}

	public ZabbixPreprocessing setErrorHandler(String errorHandler) {
		this.errorHandler = errorHandler;
		return this;
	}

	public String getErrorHandlerParams() {
		return errorHandlerParams;
	}

	public ZabbixPreprocessing setErrorHandlerParams(String errorHandlerParams) {
		this.errorHandlerParams = errorHandlerParams;
		return this;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy