it.txt.ens.core.util.AMQPFactory.java Source code

Java tutorial

Introduction

Here is the source code for it.txt.ens.core.util.AMQPFactory.java

Source

/***************************************************************************
 * Copyright 2012-2013 TXT e-solutions SpA
 * 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.
 * 
 * This work was performed within the IoT_at_Work Project
 * and partially funded by the European Commission's
 * 7th Framework Programme under the contract ICT-257367.
 *
 * Authors:
 *      Salvatore Piccione (TXT e-solutions SpA)
 *
 * Contributors:
 *        Domenico Rotondi (TXT e-solutions SpA)
 **************************************************************************/
package it.txt.ens.core.util;

import java.io.IOException;

import it.txt.ens.core.ENSAuthzServiceConnectionParameters;

import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

/**
 * @author Salvatore Piccione (TXT e-solutions SpA - salvatore.piccione AT txtgroup.com)
 * @author Domenico Rotondi (TXT e-solutions SpA - domenico.rotondi AT txtgroup.com)
 *
 */
public class AMQPFactory {

    public static ConnectionFactory createConnectionFactory(ENSAuthzServiceConnectionParameters params) {
        //create and configure the RabbitMQ Connection Factory
        ConnectionFactory factory = new ConnectionFactory();
        factory.setUsername(params.getSubjectID());
        factory.setPassword(params.getAccessToken());
        factory.setPort(params.getBrokerPort());
        factory.setHost(params.getBrokerHost());
        factory.setVirtualHost(params.getVirtualHost());
        return factory;
    }

    public static Connection createConnection(ENSAuthzServiceConnectionParameters params) throws IOException {
        //create and configure the RabbitMQ Connection Factory
        ConnectionFactory factory = new ConnectionFactory();
        factory.setUsername(params.getSubjectID());
        factory.setPassword(params.getAccessToken());
        factory.setPort(params.getBrokerPort());
        factory.setHost(params.getBrokerHost());
        factory.setVirtualHost(params.getVirtualHost());
        return factory.newConnection();
    }
}