aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/apps/dhcp/app/src/main/java/org/onosproject/dhcp/impl/DhcpConfig.java
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/apps/dhcp/app/src/main/java/org/onosproject/dhcp/impl/DhcpConfig.java')
-rw-r--r--framework/src/onos/apps/dhcp/app/src/main/java/org/onosproject/dhcp/impl/DhcpConfig.java336
1 files changed, 0 insertions, 336 deletions
diff --git a/framework/src/onos/apps/dhcp/app/src/main/java/org/onosproject/dhcp/impl/DhcpConfig.java b/framework/src/onos/apps/dhcp/app/src/main/java/org/onosproject/dhcp/impl/DhcpConfig.java
deleted file mode 100644
index 1efdd082..00000000
--- a/framework/src/onos/apps/dhcp/app/src/main/java/org/onosproject/dhcp/impl/DhcpConfig.java
+++ /dev/null
@@ -1,336 +0,0 @@
-/*
- * Copyright 2014 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.dhcp.impl;
-
-import org.onlab.packet.Ip4Address;
-import org.onlab.packet.MacAddress;
-import org.onosproject.core.ApplicationId;
-import org.onosproject.net.config.Config;
-import org.onosproject.net.config.basics.BasicElementConfig;
-
-import static org.onosproject.net.config.Config.FieldPresence.MANDATORY;
-import static org.onosproject.net.config.Config.FieldPresence.OPTIONAL;
-
-/**
- * DHCP Config class.
- */
-public class DhcpConfig extends Config<ApplicationId> {
-
- public static final String MY_IP = "ip";
- public static final String MY_MAC = "mac";
- public static final String SUBNET_MASK = "subnet";
- public static final String BROADCAST_ADDRESS = "broadcast";
- public static final String ROUTER_ADDRESS = "router";
- public static final String DOMAIN_SERVER = "domain";
- public static final String TTL = "ttl";
- public static final String LEASE_TIME = "lease";
- public static final String RENEW_TIME = "renew";
- public static final String REBIND_TIME = "rebind";
- public static final String TIMER_DELAY = "delay";
- public static final String DEFAULT_TIMEOUT = "timeout";
- public static final String START_IP = "startip";
- public static final String END_IP = "endip";
-
- public static final int DEFAULT = -1;
-
- @Override
- public boolean isValid() {
- // FIXME: Sweep through and revisit the validation assertions
- // For now, this is just a demonstration of potential uses
- return hasOnlyFields(MY_IP, MY_MAC, SUBNET_MASK, BROADCAST_ADDRESS,
- ROUTER_ADDRESS, DOMAIN_SERVER, TTL, LEASE_TIME,
- RENEW_TIME, REBIND_TIME, TIMER_DELAY, DEFAULT_TIMEOUT,
- START_IP, END_IP) &&
- isIpAddress(MY_IP, MANDATORY) && isMacAddress(MY_MAC, MANDATORY) &&
- isIpAddress(START_IP, MANDATORY) && isIpAddress(END_IP, MANDATORY) &&
- isNumber(LEASE_TIME, OPTIONAL, 1) && isNumber(REBIND_TIME, OPTIONAL, 1) &&
- isNumber(DEFAULT_TIMEOUT, OPTIONAL, 1, 3600);
- }
-
- /**
- * Returns the dhcp server ip.
- *
- * @return ip address or null if not set
- */
- public Ip4Address ip() {
- String ip = get(MY_IP, null);
- return ip != null ? Ip4Address.valueOf(ip) : null;
- }
-
- /**
- * Sets the dhcp server ip.
- *
- * @param ip new ip address; null to clear
- * @return self
- */
- public BasicElementConfig ip(String ip) {
- return (BasicElementConfig) setOrClear(MY_IP, ip);
- }
-
- /**
- * Returns the dhcp server mac.
- *
- * @return server mac or null if not set
- */
- public MacAddress mac() {
- String mac = get(MY_MAC, null);
- return mac != null ? MacAddress.valueOf(mac) : null;
- }
-
- /**
- * Sets the dhcp server mac.
- *
- * @param mac new mac address; null to clear
- * @return self
- */
- public BasicElementConfig mac(String mac) {
- return (BasicElementConfig) setOrClear(MY_MAC, mac);
- }
-
- /**
- * Returns the subnet mask.
- *
- * @return subnet mask or null if not set
- */
- public Ip4Address subnetMask() {
- String ip = get(SUBNET_MASK, null);
- return ip != null ? Ip4Address.valueOf(ip) : null;
- }
-
- /**
- * Sets the subnet mask.
- *
- * @param subnet new subnet mask; null to clear
- * @return self
- */
- public BasicElementConfig subnetMask(String subnet) {
- return (BasicElementConfig) setOrClear(SUBNET_MASK, subnet);
- }
-
- /**
- * Returns the broadcast address.
- *
- * @return broadcast address or null if not set
- */
- public Ip4Address broadcastAddress() {
- String ip = get(BROADCAST_ADDRESS, null);
- return ip != null ? Ip4Address.valueOf(ip) : null;
- }
-
- /**
- * Sets the broadcast address.
- *
- * @param broadcast new broadcast address; null to clear
- * @return self
- */
- public BasicElementConfig broadcastAddress(String broadcast) {
- return (BasicElementConfig) setOrClear(BROADCAST_ADDRESS, broadcast);
- }
-
- /**
- * Returns the Time To Live for the reply packets.
- *
- * @return ttl or -1 if not set
- */
- public int ttl() {
- return get(TTL, DEFAULT);
- }
-
- /**
- * Sets the Time To Live for the reply packets.
- *
- * @param ttl new ttl; null to clear
- * @return self
- */
- public BasicElementConfig ttl(int ttl) {
- return (BasicElementConfig) setOrClear(TTL, ttl);
- }
-
- /**
- * Returns the Lease Time offered by the DHCP Server.
- *
- * @return lease time or -1 if not set
- */
- public int leaseTime() {
- return get(LEASE_TIME, DEFAULT);
- }
-
- /**
- * Sets the Lease Time offered by the DHCP Server.
- *
- * @param lease new lease time; null to clear
- * @return self
- */
- public BasicElementConfig leaseTime(int lease) {
- return (BasicElementConfig) setOrClear(LEASE_TIME, lease);
- }
-
- /**
- * Returns the Renew Time offered by the DHCP Server.
- *
- * @return renew time or -1 if not set
- */
- public int renewTime() {
- return get(RENEW_TIME, DEFAULT);
- }
-
- /**
- * Sets the Renew Time offered by the DHCP Server.
- *
- * @param renew new renew time; null to clear
- * @return self
- */
- public BasicElementConfig renewTime(int renew) {
- return (BasicElementConfig) setOrClear(RENEW_TIME, renew);
- }
-
- /**
- * Returns the Rebind Time offered by the DHCP Server.
- *
- * @return rebind time or -1 if not set
- */
- public int rebindTime() {
- return get(REBIND_TIME, DEFAULT);
- }
-
- /**
- * Sets the Rebind Time offered by the DHCP Server.
- *
- * @param rebind new rebind time; null to clear
- * @return self
- */
- public BasicElementConfig rebindTime(int rebind) {
- return (BasicElementConfig) setOrClear(REBIND_TIME, rebind);
- }
-
- /**
- * Returns the Router Address.
- *
- * @return router address or null if not set
- */
- public Ip4Address routerAddress() {
- String ip = get(ROUTER_ADDRESS, null);
- return ip != null ? Ip4Address.valueOf(ip) : null;
- }
-
- /**
- * Sets the Router Address.
- *
- * @param router new router address; null to clear
- * @return self
- */
- public BasicElementConfig routerAddress(String router) {
- return (BasicElementConfig) setOrClear(ROUTER_ADDRESS, router);
- }
-
- /**
- * Returns the Domain Server Address.
- *
- * @return domain server address or null if not set
- */
- public Ip4Address domainServer() {
- String ip = get(DOMAIN_SERVER, null);
- return ip != null ? Ip4Address.valueOf(ip) : null;
- }
-
- /**
- * Sets the Domain Server Address.
- *
- * @param domain new domain server address; null to clear
- * @return self
- */
- public BasicElementConfig domainServer(String domain) {
- return (BasicElementConfig) setOrClear(DOMAIN_SERVER, domain);
- }
-
- /**
- * Returns the delay in minutes after which the dhcp server will purge expired entries.
- *
- * @return time delay or -1 if not set
- */
- public int timerDelay() {
- return get(TIMER_DELAY, DEFAULT);
- }
-
- /**
- * Sets the delay after which the dhcp server will purge expired entries.
- *
- * @param delay new time delay; null to clear
- * @return self
- */
- public BasicElementConfig timerDelay(int delay) {
- return (BasicElementConfig) setOrClear(TIMER_DELAY, delay);
- }
-
- /**
- * Returns the default timeout for pending assignments.
- *
- * @return default timeout or -1 if not set
- */
- public int defaultTimeout() {
- return get(DEFAULT_TIMEOUT, DEFAULT);
- }
-
- /**
- * Sets the default timeout for pending assignments.
- *
- * @param defaultTimeout new default timeout; null to clear
- * @return self
- */
- public BasicElementConfig defaultTimeout(int defaultTimeout) {
- return (BasicElementConfig) setOrClear(DEFAULT_TIMEOUT, defaultTimeout);
- }
-
- /**
- * Returns the start IP for the available IP Range.
- *
- * @return start IP or null if not set
- */
- public Ip4Address startIp() {
- String ip = get(START_IP, null);
- return ip != null ? Ip4Address.valueOf(ip) : null;
- }
-
- /**
- * Sets the start IP for the available IP Range.
- *
- * @param startIp new start IP; null to clear
- * @return self
- */
- public BasicElementConfig startIp(String startIp) {
- return (BasicElementConfig) setOrClear(START_IP, startIp);
- }
-
- /**
- * Returns the end IP for the available IP Range.
- *
- * @return end IP or null if not set
- */
- public Ip4Address endIp() {
- String ip = get(END_IP, null);
- return ip != null ? Ip4Address.valueOf(ip) : null;
- }
-
- /**
- * Sets the end IP for the available IP Range.
- *
- * @param endIp new end IP; null to clear
- * @return self
- */
- public BasicElementConfig endIp(String endIp) {
- return (BasicElementConfig) setOrClear(END_IP, endIp);
- }
-}