summaryrefslogtreecommitdiff
path: root/java/jca/src/main/java/org/apache/qpid/ra/admin/QpidQueueImpl.java
blob: 162099d1ee05c7b8f7f235802ac6c6d64ff52495 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.apache.qpid.ra.admin;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;

import javax.naming.NamingException;
import javax.naming.Reference;
import javax.naming.StringRefAddr;

import org.apache.qpid.client.AMQQueue;

public class QpidQueueImpl extends AMQQueue implements QpidQueue, Externalizable
{
    private String _url;

    public QpidQueueImpl()
    {
        super();
    }

    public QpidQueueImpl(final String address) throws Exception
    {
        super(address);
        this._url = address;
    }

    @Override
    public Reference getReference() throws NamingException
    {
        return new Reference(this.getClass().getName(), new StringRefAddr(this.getClass().getName(), toURL()),
                AdminObjectFactory.class.getName(), null);
    }

    @Override
    public String toURL()
    {
        return _url;
    }

    public void setDestinationAddress(String destinationAddress) throws Exception
    {
        this._url = destinationAddress;
        setDestinationString(this._url);
    }


    public String getDestinationAddress()
    {
    	return this._url;
    }

    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
    {
        this._url = (String)in.readObject();

        try
        {
            setDestinationString(this._url);

        }
        catch(Exception e)
        {
        	throw new IOException(e.getMessage(), e);
        }
    }

    public void writeExternal(ObjectOutput out) throws IOException
    {
        out.writeObject(this._url);
    }

}