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

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

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

public class ZabbixHostInterfaceUpdateRequest {

	private String interfaceid;

	private String port;

	public ZabbixHostInterfaceUpdateRequest(String interfaceid, String port) {
		this.interfaceid = interfaceid;
		this.port = port;
	}

	public String getInterfaceid() {
		return interfaceid;
	}

	public String getPort() {
		return port;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy