Package org.jmanage.core.modules.snmp

Source Code of org.jmanage.core.modules.snmp.SNMPAgentConnectionFactory

/**
* Copyright (c) 2004-2005 jManage.org
*
* This is a free software; you can redistribute it and/or
* modify it under the terms of the license at
* http://www.jmanage.org.
*
* 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.jmanage.core.modules.snmp;

import org.jmanage.core.management.ServerConnectionFactory;
import org.jmanage.core.management.ServerConnection;
import org.jmanage.core.management.ConnectionFailedException;
import org.jmanage.core.config.ApplicationConfig;
import snmp.SNMPv1CommunicationInterface;

import java.net.InetAddress;

/**
* @author shashank
* Date: Jul 31, 2005
*/
public class SNMPAgentConnectionFactory implements ServerConnectionFactory{

    /**
     *
     * @param config
     * @return
     * @throws ConnectionFailedException
     */
    public ServerConnection getServerConnection(ApplicationConfig config)
            throws ConnectionFailedException {
        try{
            InetAddress hostAddress = InetAddress.getByName(config.getHost());
            SNMPv1CommunicationInterface commIntf =
                    new SNMPv1CommunicationInterface(1, hostAddress, "public",
                            config.getPort().intValue());
            SNMPAgentConnection connection = new SNMPAgentConnection(commIntf);
            return connection;
        }catch(Throwable e){
            throw new ConnectionFailedException(e);
        }
    }
}
TOP

Related Classes of org.jmanage.core.modules.snmp.SNMPAgentConnectionFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.