blob: 259f80a7b90ccf94dfd7fa369f2b7babd6df35d0 [file] [log] [blame]
/*
* Copyright 2016-present Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.lisp.msg.protocols;
import io.netty.buffer.ByteBuf;
import java.util.List;
/**
* Default LISP map register message class.
*/
public class DefaultLispMapRegister implements LispMapRegister {
@Override
public LispType getType() {
return null;
}
@Override
public void writeTo(ByteBuf byteBuf) {
}
@Override
public Builder createBuilder() {
return null;
}
@Override
public boolean isProxyMapReply() {
return false;
}
@Override
public boolean isWantMapNotify() {
return false;
}
@Override
public byte getRecordCount() {
return 0;
}
@Override
public long getNonce() {
return 0;
}
@Override
public short getKeyId() {
return 0;
}
@Override
public byte[] getAuthenticationData() {
return new byte[0];
}
@Override
public List<LispRecord> getLispRecords() {
return null;
}
public static final class DefaultRegisterBuilder implements RegisterBuilder {
@Override
public LispMessage build() {
return null;
}
@Override
public LispType getType() {
return null;
}
@Override
public RegisterBuilder withIsProxyMapReply(boolean isProxyMapReply) {
return null;
}
@Override
public RegisterBuilder withIsWantMapNotify(boolean isWantMapNotify) {
return null;
}
@Override
public RegisterBuilder withRecordCount(byte recordCount) {
return null;
}
@Override
public RegisterBuilder withNonce(long nonce) {
return null;
}
@Override
public RegisterBuilder withKeyId(short keyId) {
return null;
}
@Override
public RegisterBuilder withAuthenticationData(byte[] authenticationData) {
return null;
}
@Override
public RegisterBuilder addRecord(LispRecord record) {
return null;
}
}
}