blob: cc8b5372df6521c01786f8537fba15b99abd8286 [file] [log] [blame]
/*
*
* 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.v1_0.type.messaging;
import org.apache.qpid.server.protocol.v1_0.messaging.SectionEncoder;
import org.apache.qpid.server.protocol.v1_0.type.*;
public class Header
implements Section
{
private Boolean _durable;
private UnsignedByte _priority;
private UnsignedInteger _ttl;
private Boolean _firstAcquirer;
private UnsignedInteger _deliveryCount;
public Boolean getDurable()
{
return _durable;
}
public void setDurable(Boolean durable)
{
_durable = durable;
}
public UnsignedByte getPriority()
{
return _priority;
}
public void setPriority(UnsignedByte priority)
{
_priority = priority;
}
public UnsignedInteger getTtl()
{
return _ttl;
}
public void setTtl(UnsignedInteger ttl)
{
_ttl = ttl;
}
public Boolean getFirstAcquirer()
{
return _firstAcquirer;
}
public void setFirstAcquirer(Boolean firstAcquirer)
{
_firstAcquirer = firstAcquirer;
}
public UnsignedInteger getDeliveryCount()
{
return _deliveryCount;
}
public void setDeliveryCount(UnsignedInteger deliveryCount)
{
_deliveryCount = deliveryCount;
}
@Override
public String toString()
{
StringBuilder builder = new StringBuilder("Header{");
final int origLength = builder.length();
if(_durable != null)
{
if(builder.length() != origLength)
{
builder.append(',');
}
builder.append("durable=").append(_durable);
}
if(_priority != null)
{
if(builder.length() != origLength)
{
builder.append(',');
}
builder.append("priority=").append(_priority);
}
if(_ttl != null)
{
if(builder.length() != origLength)
{
builder.append(',');
}
builder.append("ttl=").append(_ttl);
}
if(_firstAcquirer != null)
{
if(builder.length() != origLength)
{
builder.append(',');
}
builder.append("firstAcquirer=").append(_firstAcquirer);
}
if(_deliveryCount != null)
{
if(builder.length() != origLength)
{
builder.append(',');
}
builder.append("deliveryCount=").append(_deliveryCount);
}
builder.append('}');
return builder.toString();
}
public Binary encode(final SectionEncoder encoder)
{
encoder.reset();
encoder.encodeObject(this);
return encoder.getEncoding();
}
}