2 * Copyright (C) 2019 Verizon. All Rights Reserved Licensed under the Apache License, Version 2.0 (the "License"); you
3 * may not use this file except in compliance with the License. You may obtain a copy of the License at
5 * http://www.apache.org/licenses/LICENSE-2.0
7 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
8 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
9 * specific language governing permissions and limitations under the License.
12 package org.onap.so.adapters.vfc.model;
14 import java.util.List;
16 public class IpOverEthernetAddressData {
17 private String macAddress;
18 private List<IpAddresses> ipAddresses;
20 public String getMacAddress() {
24 public void setMacAddress(String macAddress) {
25 this.macAddress = macAddress;
28 public List<IpAddresses> getIpAddresses() {
32 public void setIpAddresses(List<IpAddresses> ipAddresses) {
33 this.ipAddresses = ipAddresses;