1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.lumaserv.bgp.protocol.attribute; import java.nio.ByteBuffer; public class AtomicAggregateAttribute implements PathAttribute { public AtomicAggregateAttribute(byte typeCode, byte[] data) { } public byte getTypeCode() { return 6; } public void build(ByteBuffer b) { } }