blob: 238845db9e0b586b0a9c19defcc0f8ca76fb168a [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.protonj2.codec.encoders.messaging;
import org.apache.qpid.protonj2.buffer.ProtonBuffer;
import org.apache.qpid.protonj2.codec.EncoderState;
import org.apache.qpid.protonj2.codec.EncodingCodes;
import org.apache.qpid.protonj2.codec.encoders.AbstractDescribedListTypeEncoder;
import org.apache.qpid.protonj2.types.Symbol;
import org.apache.qpid.protonj2.types.UnsignedLong;
import org.apache.qpid.protonj2.types.messaging.DeleteOnNoLinks;
/**
* Encoder of AMQP DeleteOnNoLinks type values to a byte stream
*/
public final class DeleteOnNoLinksTypeEncoder extends AbstractDescribedListTypeEncoder<DeleteOnNoLinks> {
@Override
public UnsignedLong getDescriptorCode() {
return DeleteOnNoLinks.DESCRIPTOR_CODE;
}
@Override
public Symbol getDescriptorSymbol() {
return DeleteOnNoLinks.DESCRIPTOR_SYMBOL;
}
@Override
public Class<DeleteOnNoLinks> getTypeClass() {
return DeleteOnNoLinks.class;
}
@Override
public byte getListEncoding(DeleteOnNoLinks value) {
return EncodingCodes.LIST0 & 0xff;
}
@Override
public void writeElement(DeleteOnNoLinks source, int index, ProtonBuffer buffer, EncoderState state) {
}
@Override
public int getElementCount(DeleteOnNoLinks value) {
return 0;
}
}