summaryrefslogtreecommitdiff
path: root/qpid/java/broker/src/main/java/org/apache/qpid/server/exchange/DirectExchangeType.java
blob: 11f16690effb563287560cd82488e73b412dc8c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.apache.qpid.server.exchange;

import java.util.UUID;

import org.apache.qpid.AMQException;
import org.apache.qpid.exchange.ExchangeDefaults;
import org.apache.qpid.framing.AMQShortString;
import org.apache.qpid.server.plugin.ExchangeType;
import org.apache.qpid.server.virtualhost.VirtualHost;

public class DirectExchangeType implements ExchangeType<DirectExchange>
{
    public AMQShortString getName()
    {
        return ExchangeDefaults.DIRECT_EXCHANGE_CLASS;
    }

    public DirectExchange newInstance(UUID id, VirtualHost host,
                                        AMQShortString name,
                                        boolean durable,
                                        int ticket,
                                        boolean autoDelete) throws AMQException
    {
        DirectExchange exch = new DirectExchange();
        exch.initialise(id, host,name,durable,ticket,autoDelete);
        return exch;
    }

    public AMQShortString getDefaultExchangeName()
    {
        return ExchangeDefaults.DIRECT_EXCHANGE_NAME;
    }
}