Package org.apache.qpid.server.protocol.v0_8

Source Code of org.apache.qpid.server.protocol.v0_8.ContentHeaderBodyAdapter

/*
*
* 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.server.protocol.v0_8;

import java.util.Collection;
import org.apache.qpid.framing.BasicContentHeaderProperties;
import org.apache.qpid.framing.ContentHeaderBody;
import org.apache.qpid.framing.FieldTable;

import java.util.Set;
import org.apache.qpid.server.message.AMQMessageHeader;

public class ContentHeaderBodyAdapter implements AMQMessageHeader
{
    private final ContentHeaderBody _contentHeaderBody;

    public ContentHeaderBodyAdapter(ContentHeaderBody contentHeaderBody)
    {
        _contentHeaderBody = contentHeaderBody;
    }

    private BasicContentHeaderProperties getProperties()
    {
        return (BasicContentHeaderProperties) _contentHeaderBody.getProperties();
    }

    public String getCorrelationId()
    {
        return getProperties().getCorrelationIdAsString();
    }

    public long getExpiration()
    {
        return getProperties().getExpiration();
    }

    public String getUserId()
    {
        return getProperties().getUserIdAsString();
    }

    public String getAppId()
    {
        return getProperties().getAppIdAsString();
    }

    public String getMessageId()
    {
        return getProperties().getMessageIdAsString();
    }

    public String getMimeType()
    {
        return getProperties().getContentTypeAsString();
    }

    public String getEncoding()
    {
        return getProperties().getEncodingAsString();
    }

    public byte getPriority()
    {
        return getProperties().getPriority();
    }

    public long getTimestamp()
    {
        return getProperties().getTimestamp();
    }

    public String getType()
    {
        return getProperties().getTypeAsString();
    }

    public String getReplyTo()
    {
        return getProperties().getReplyToAsString();
    }

    public String getReplyToExchange()
    {
        // TODO
        return getReplyTo();
    }

    public String getReplyToRoutingKey()
    {
        // TODO
        return getReplyTo();

    }

    public Object getHeader(String name)
    {
        FieldTable ft = getProperties().getHeaders();
        return ft.get(name);
    }

    public boolean containsHeaders(Set<String> names)
    {
        FieldTable ft = getProperties().getHeaders();
        for(String name : names)
        {
            if(!ft.containsKey(name))
            {
                return false;
            }
        }
        return true;
    }

    @Override
    public Collection<String> getHeaderNames()
    {
        FieldTable ft = getProperties().getHeaders();
        return ft.keys();
    }

    public boolean containsHeader(String name)
    {
        FieldTable ft = getProperties().getHeaders();
        return ft.containsKey(name);
    }


}
TOP

Related Classes of org.apache.qpid.server.protocol.v0_8.ContentHeaderBodyAdapter

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.