blob: 694b0485195c8d7a77992a9109719b1569ddb42d [file] [log] [blame]
Kalhee Kimba366062017-11-07 16:32:09 +00001/*
2 * Copyright 2017-present Open Networking Foundation
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.dhcprelay.store;
18import org.onosproject.routing.fpm.api.FpmRecord;
19import org.onosproject.routing.fpm.api.FpmPrefixStore;
20
21
22
23import org.onlab.packet.IpPrefix;
24import java.util.Optional;
25
26
27
28/**
29 * Interface to store DhcpFpm records.
30 */
31
32public interface DhcpFpmPrefixStore extends FpmPrefixStore {
33
34
35 /**
36 * Add a dhcp fpm record.
37 *
38 * @param prefix the route prefix in the advertisement
39 * @param fpmRecord the route for fpm
40 **/
41 public void addFpmRecord(IpPrefix prefix, FpmRecord fpmRecord);
42
43 /**
44 * Remove a dhcp fpm entry
45 * and return the removed record; return empty value if not exists.
46 *
47 * @param prefix the route prefix in the advertisement
48 * @return none
49 **/
50 public Optional<FpmRecord> removeFpmRecord(IpPrefix prefix);
51}