blob: 1c29b76a3cfb2a3a3a2f74dde4ab8a25394aa6ee [file] [log] [blame]
Phaneendra Manda1c0061d2015-08-06 12:29:38 +05301/*
2 * Copyright 2015 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 */
16
17package org.onosproject.pcepio.protocol;
18
19import org.jboss.netty.buffer.ChannelBuffer;
20import org.onosproject.pcepio.exceptions.PcepParseException;
21import org.onosproject.pcepio.types.PcepObjectHeader;
22
23/**
24 * Abstraction of an entity providing FEC Object of Type is 2 IPv6 Node ID.
25 */
26public interface PcepFecObjectIPv6 extends PcepFecObject {
27
28 /**
29 * Returns NodeID of FEC Object.
30 *
31 * @return NodeID of FEC Object
32 */
33 byte[] getNodeID();
34
35 /**
36 * Sets NodeID with specified value.
37 *
38 * @param value node id
39 */
40 void setNodeID(byte[] value);
41
42 @Override
Phaneendra Manda1c0061d2015-08-06 12:29:38 +053043 int write(ChannelBuffer bb) throws PcepParseException;
44
45 /**
46 * Builder interface with get and set functions to build FEC object.
47 */
Sho SHIMIZU260f6ef2015-08-11 13:53:31 -070048 interface Builder {
Phaneendra Manda1c0061d2015-08-06 12:29:38 +053049
50 /**
51 * Builds FEC Object IPv6.
52 *
53 * @return FEC Object IPv6
54 * @throws PcepParseException while building FEC IPv6 Object.
55 */
56 PcepFecObjectIPv6 build() throws PcepParseException;
57
58 /**
59 * Returns FEC Object IPv6 header.
60 *
61 * @return FEC Object IPv6 header
62 */
63 PcepObjectHeader getFecIpv6ObjHeader();
64
65 /**
66 * Sets FEC Object IPv6 header and returns its builder.
67 *
68 * @param obj FEC Object IPv6 header
69 * @return Builder by setting FEC Object IPv6 header
70 */
71 Builder setFecIpv6ObjHeader(PcepObjectHeader obj);
72
73 /**
74 * Returns NodeID of FEC Object.
75 *
76 * @return NodeID of FEC Object
77 */
78 byte[] getNodeID();
79
80 /**
81 * Sets NodeID and returns its builder.
82 *
83 * @param value node id
84 * @return Builder by setting NodeID
85 */
86 Builder setNodeID(byte[] value);
87
88 /**
89 * Sets P flag in FEC object header and returns its builder.
90 *
91 * @param value boolean value to set P flag
92 * @return Builder by setting P flag
93 */
94 Builder setPFlag(boolean value);
95
96 /**
97 * Sets I flag in FEC object header and returns its builder.
98 *
99 * @param value boolean value to set I flag
100 * @return Builder by setting I flag
101 */
102 Builder setIFlag(boolean value);
103 }
104}