org.adeptnet.jmx.addons.mikrotik.BeanInterface Maven / Gradle / Ivy
/*
* Copyright 2015 Francois Steyn - Adept Internet (PTY) LTD ([email protected]).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.adeptnet.jmx.addons.mikrotik;
import java.io.IOException;
import java.util.List;
import java.util.Map;
/**
*
* @author Francois Steyn - Adept Internet (PTY) LTD ([email protected])
*/
public interface BeanInterface {
public void loadFromAPI(final String reference, final String host, final String user, final String password, final String cmd) throws IOException;
public void loadFromAPI(final String reference, final String host, final String user, final String password, final String cmd, final int port) throws IOException;
public void loadFromAPI(final String reference, final String host, final String user, final String password, final String cmd, final int port, final int timeout) throws IOException;
public void loadFromAPITLS(final String reference, final String host, final String user, final String password, final String cmd) throws IOException;
public void loadFromAPITLS(final String reference, final String host, final String user, final String password, final String cmd, final int port) throws IOException;
public void loadFromAPITLS(final String reference, final String host, final String user, final String password, final String cmd, final int port, final int timeout) throws IOException;
public String asString(final String reference, final String matchName, final String matchValue, final String returnName);
public int asInt(final String reference, final String matchName, final String matchValue, final String returnName);
public List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy