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