aboutsummaryrefslogtreecommitdiffstats
path: root/svc/svcbase/src/main/java/com/cablelabs/vcpe/svc/svcbase/model/Epl.java
blob: 407bf814bd7a63568cbd64a81062eef9cf0e1f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*******************************************************************************
* Copyright (c) 2015 CableLabs Inc. and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution, and is available at
* http://www.apache.org/licenses/LICENSE-2.0
*******************************************************************************/

package com.cablelabs.vcpe.svc.svcbase.model;

import com.cablelabs.vcpe.common.Dbg;
import com.cablelabs.vcpe.evc.evcbase.model.Evc;
import com.cablelabs.vcpe.evc.evcbase.client.EvcClient;

import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;

/**
 * Created by steve on 5/24/15.
 */

@XmlRootElement
public class Epl
{
    private String id;
    private long numCustLocations;
    private List<String> custAddressList = null;
    private List<String> uniHostMacList = null;
    private List<String> uniHostIpList = null;
    private String cos;
    private String evcId;

    // zero argument constructor required for JAX-RS
    public Epl() {
        id = "unset";
        this.numCustLocations = -1;
        this.custAddressList = null;
        this.uniHostMacList = null;
        this.uniHostIpList = null;
        this.cos = "unset";
        this.evcId = "unset";
    }

    public void setAllProps (String id, long numCustLocations,
                             List<String> custAddressList,
                             List<String> uniHostMacList, List<String> uniHostIpList, String cos, String evcId) {
        this.id = id;
        this.numCustLocations = numCustLocations;
        this.custAddressList = custAddressList;
        this.uniHostMacList = uniHostMacList;
        this.uniHostIpList = uniHostIpList;
        this.cos = cos;
        this.evcId = evcId;
    }

    public void dump() { dump(0); }
    public void dump(int tab) {

        Dbg.p(tab, "id: " + this.id);
        Dbg.p(tab, "numCustLocations: " + this.numCustLocations);
        Dbg.p(tab, "Address List:");
        for (String addr : custAddressList)
            Dbg.p(tab+1, addr);
        Dbg.p(tab, "UNI Mac List:");
        for (String mac : uniHostMacList)
            Dbg.p(tab+1, mac);
        Dbg.p(tab, "UNI IP List:");
        for (String ip : uniHostIpList)
            Dbg.p(tab+1, ip);
        Dbg.p(tab, "cos: " + this.cos);
        Dbg.p(tab, "Evc:"  + this.evcId);
//        if ( this.evcId != "unset") { // hacky
//            EvcClient evcClient = new EvcClient();
//            Evc evc = evcClient.get(this.evcId);
//            evc.dump(tab + 2);
//        }
    }

    public static void dumpList(List<Epl> eplList) { dumpList(0, eplList); }
    public static void dumpList(int tab, List<Epl> eplList) {
        int numSvc = 0;
        Dbg.p("----- Epl List : [" + eplList.size() + "] elements");
        for (Epl curEpl : eplList) {
            numSvc++;
            Dbg.p(tab+1, "<Entry " + numSvc+">");
            curEpl.dump(tab+2);
        }
    }

    // Getters & Setters
    public String getId() { return id; }
    public void setId(String id) { this.id = id; }

    public long getNumCustLocations() { return numCustLocations; }
    public void setNumCustLocations(long numCustLocations) { this.numCustLocations = numCustLocations; }

    public List<String> getCustAddressList() { return custAddressList; }
    public void setCustAddressList(List<String> custAddressList) { this.custAddressList = custAddressList; }

    public List<String> getUniHostMacList() { return uniHostMacList; }
    public void setUniHostMacList(List<String> uniHostMacList) { this.uniHostMacList = uniHostMacList; }


    public List<String> getUniHostIpList() { return uniHostIpList; }
    public void setUniHostIpList(List<String> uniHostIpList) { this.uniHostIpList = uniHostIpList; }

    public String getCos() { return cos; }
    public void setCos(String cos) { this.cos = cos; }

    public String getEvcId() { return evcId; }
    public void setEvcId(String evcId) { this.evcId = evcId; }
}