blob: 644c22972eae3a6ef75c4b8af62235048fc0a30b [file] [log] [blame]
Pingping Linffa27d32015-04-30 14:41:03 -07001/*
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 */
16package org.onosproject.virtualbng;
17
18import org.onlab.packet.IpAddress;
19
20/**
21 * Provides information about the virtual BNG configuration.
22 */
23public interface VbngConfigurationService {
24
25 /**
26 * Gets the IP address configured for the next hop.
27 *
28 * @return the IP address of next hop
29 */
30 public IpAddress getNextHopIpAddress();
31
32 /**
33 * Gets an available public IP address from local public IP prefixes.
34 *
35 * @param privateIpAddress a private IP address
36 * @return an available public IP address if it exists, otherwise null
37 */
38 public IpAddress getAvailablePublicIpAddress(IpAddress privateIpAddress);
Pingping Lin4e0c73d2015-05-06 15:41:10 -070039
40 /**
41 * Gets the public IP address already assigned for a private IP address.
42 *
43 * @param privateIpAddress a private IP address
44 * @return the assigned public IP address if it exists, otherwise null
45 */
46 public IpAddress getAssignedPublicIpAddress(IpAddress privateIpAddress);
Pingping Linffa27d32015-04-30 14:41:03 -070047}