summaryrefslogtreecommitdiff
path: root/src/main/java/com/lumaserv/bgp/protocol/attribute/AtomicAggregateAttribute.java
blob: 6f7e47901281cb39acf9f12e69cd19cac7031df0 (plain)
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];
    }

}