blob: 2dcea9abfc518188e027ba5b7720865b8c5de92b [file] [log] [blame]
GUNiba871702016-08-22 21:06:02 +09001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.lisp.msg.types;
17
18import io.netty.buffer.ByteBuf;
19import org.onosproject.lisp.msg.exceptions.LispWriterException;
20
21/**
22 * An interface for serializing LISP address.
23 */
24public interface LispAddressWriter<T> {
25
26 /**
Jian Liedc5db12016-08-23 17:30:19 +090027 * Serializes LISP address object and writes to byte buffer.
GUNiba871702016-08-22 21:06:02 +090028 *
29 * @param byteBuf byte buffer
30 * @param address LISP address type instance
Jian Liedc5db12016-08-23 17:30:19 +090031 * @throws LispWriterException LISP writer exception
GUNiba871702016-08-22 21:06:02 +090032 */
33 void writeTo(ByteBuf byteBuf, T address) throws LispWriterException;
34
35}