diff options
author | JanHolger <jan@bebendorf.eu> | 2021-11-30 21:08:47 +0100 |
---|---|---|
committer | JanHolger <jan@bebendorf.eu> | 2021-11-30 21:08:47 +0100 |
commit | 7498460d25ccae73b717f43653778624ce0daed0 (patch) | |
tree | e92b90d5d81c4be4594eae2ff59ce342883cef9e /src/main/java/com/lumaserv/bgp/protocol/attribute/NextHopAttribute.java | |
parent | 4912be906f7663960474a34a3ba04c6c227dc91a (diff) |
Fixed a few issues
Diffstat (limited to 'src/main/java/com/lumaserv/bgp/protocol/attribute/NextHopAttribute.java')
-rw-r--r-- | src/main/java/com/lumaserv/bgp/protocol/attribute/NextHopAttribute.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/com/lumaserv/bgp/protocol/attribute/NextHopAttribute.java b/src/main/java/com/lumaserv/bgp/protocol/attribute/NextHopAttribute.java index f60d236..14d5367 100644 --- a/src/main/java/com/lumaserv/bgp/protocol/attribute/NextHopAttribute.java +++ b/src/main/java/com/lumaserv/bgp/protocol/attribute/NextHopAttribute.java @@ -1,5 +1,10 @@ package com.lumaserv.bgp.protocol.attribute; +import lombok.Getter; +import lombok.Setter; + +@Getter +@Setter public class NextHopAttribute implements PathAttribute { byte[] address; |