aboutsummaryrefslogtreecommitdiffstats
path: root/cos/cosbase/src/main/java/com/cablelabs/vcpe/cos/cosbase/model/BandwidthProfile.java
blob: 70f7313b708c486586c229e2f29ef809ba062c4b (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
package com.cablelabs.vcpe.cos.cosbase.model;

import javax.xml.bind.annotation.XmlRootElement;

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

@XmlRootElement
public class BandwidthProfile {
    private int committedInfoRate = 0; // MBS
    private int committedBurtSize = 0; // MBS
    private int excessInfoRate    = 0; // MBS
    private int excessBurstSize   = 0; // MBS

    public int getCommittedInfoRate() { return committedInfoRate; }
    public void setCommittedInfoRate(int committedInfoRate) { this.committedInfoRate = committedInfoRate; }

    public int getCommittedBurtSize() { return committedBurtSize; }
    public void setCommittedBurtSize(int committedBurtSize) { this.committedBurtSize = committedBurtSize; }

    public int getExcessInfoRate() { return excessInfoRate; }
    public void setExcessInfoRate(int excessInfoRate) { this.excessInfoRate = excessInfoRate; }

    public int getExcessBurstSize() { return excessBurstSize; }
    public void setExcessBurstSize(int excessBurstSize) { this.excessBurstSize = excessBurstSize; }
}