blob: f8773761a8919f175666d73fbd982d8803bec45a [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Jonathan Hart74f9c3b2014-09-29 20:03:50 -070019package org.onlab.onos.config;
20
21import java.util.Collections;
22import java.util.List;
23
Jonathan Hartd7bd9822014-10-20 18:18:02 -070024import com.fasterxml.jackson.annotation.JsonProperty;
Jonathan Hart74f9c3b2014-09-29 20:03:50 -070025
26/**
27 * Object to store address configuration read from a JSON file.
28 */
29public class AddressConfiguration {
30
31 private List<AddressEntry> addresses;
32
33 /**
34 * Gets a list of addresses in the system.
35 *
36 * @return the list of addresses
37 */
38 public List<AddressEntry> getAddresses() {
39 return Collections.unmodifiableList(addresses);
40 }
41
42 /**
43 * Sets a list of addresses in the system.
44 *
45 * @param addresses the list of addresses
46 */
47 @JsonProperty("addresses")
48 public void setAddresses(List<AddressEntry> addresses) {
49 this.addresses = addresses;
50 }
51
52}