Package org.apache.qpid.server.federation

Examples of org.apache.qpid.server.federation.BrokerLink


    public BridgeRecoveryHandler brokerLink(final UUID id,
                                            final long createTime,
                                            final Map<String, String> arguments)
    {
        BrokerLink blink = _virtualHost.createBrokerConnection(id, createTime, arguments);
        return new BridgeRecoveryHandlerImpl(blink);
       
    }
View Full Code Here


        _dataReceived = new StatisticsCounter("bytes-received-" + getName());
    }

    public BrokerLink createBrokerConnection(UUID id, long createTime, Map<String,String> arguments)
    {
        BrokerLink blink = new BrokerLink(this, id, createTime, arguments);
        // TODO - cope with duplicate broker link creation requests
        _links.putIfAbsent(blink,blink);
        getConfigStore().addConfiguredObject(blink);
        return blink;
    }
View Full Code Here

                                       final boolean durable,
                                       final String authMechanism,
                                       final String username,
                                       final String password)
    {
        BrokerLink blink = new BrokerLink(this, transport, host, port, vhost, durable, authMechanism, username, password);

        // TODO - cope with duplicate broker link creation requests
        _links.putIfAbsent(blink,blink);
        getConfigStore().addConfiguredObject(blink);
View Full Code Here

    public void removeBrokerConnection(final String transport,
                                       final String host,
                                       final int port,
                                       final String vhost)
    {
        removeBrokerConnection(new BrokerLink(this, transport, host, port, vhost, false, null,null,null));

    }
View Full Code Here

                                       final boolean durable,
                                       final String authMechanism,
                                       final String username,
                                       final String password)
    {
        BrokerLink blink = new BrokerLink(this, transport, host, port, vhost, durable, authMechanism, username, password);
        if(_links.putIfAbsent(blink,blink) != null)
        {
            getConfigStore().addConfiguredObject(blink);
        }
    }
View Full Code Here

    public void removeBrokerConnection(final String transport,
                                       final String host,
                                       final int port,
                                       final String vhost)
    {
        removeBrokerConnection(new BrokerLink(this, transport, host, port, vhost, false, null,null,null));

    }
View Full Code Here

                                       final boolean durable,
                                       final String authMechanism,
                                       final String username,
                                       final String password)
    {
        BrokerLink blink = new BrokerLink(this, transport, host, port, vhost, durable, authMechanism, username, password);
        if(_links.putIfAbsent(blink,blink) != null)
        {
            getConfigStore().addConfiguredObject(blink);
        }
    }
View Full Code Here

    public void removeBrokerConnection(final String transport,
                                       final String host,
                                       final int port,
                                       final String vhost)
    {
        removeBrokerConnection(new BrokerLink(this, transport, host, port, vhost, false, null,null,null));

    }
View Full Code Here

                                       final boolean durable,
                                       final String authMechanism,
                                       final String username,
                                       final String password)
    {
        BrokerLink blink = new BrokerLink(this, transport, host, port, vhost, durable, authMechanism, username, password);
        if(_links.putIfAbsent(blink,blink) != null)
        {
            getConfigStore().addConfiguredObject(blink);
        }
    }
View Full Code Here

    public void removeBrokerConnection(final String transport,
                                       final String host,
                                       final int port,
                                       final String vhost)
    {
        removeBrokerConnection(new BrokerLink(this, transport, host, port, vhost, false, null,null,null));

    }
View Full Code Here

TOP

Related Classes of org.apache.qpid.server.federation.BrokerLink

Copyright © 2018 www.massapicom. 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.