diff options
Diffstat (limited to 'src/main/java/com/lumaserv/bgp/protocol/DataBuilder.java')
-rw-r--r-- | src/main/java/com/lumaserv/bgp/protocol/DataBuilder.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/com/lumaserv/bgp/protocol/DataBuilder.java b/src/main/java/com/lumaserv/bgp/protocol/DataBuilder.java new file mode 100644 index 0000000..e21ccec --- /dev/null +++ b/src/main/java/com/lumaserv/bgp/protocol/DataBuilder.java @@ -0,0 +1,8 @@ +package com.lumaserv.bgp.protocol; + +import java.nio.ByteBuffer; + +public interface DataBuilder { + + public void build(ByteBuffer b); +} |