aboutsummaryrefslogtreecommitdiffstats
path: root/svc/svcbase/src/main/java/com/cablelabs/vcpe/svc/svcbase/repository/EplRespository.java
blob: 11429639d8e73ba418e1f1c416f10dcb3eb2caf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.cablelabs.vcpe.svc.svcbase.repository;

import com.cablelabs.vcpe.svc.svcbase.model.Epl;

import java.util.List;

/**
 * Created by steve on 5/25/15.
 */
public interface EplRespository
{
    // TODO add exceptions

    Epl add(Epl epl);          // returns null if already exists, otherwise returns stored epl
    Epl get(String svcId);     // returns null if not found, otherwise stored svc
    Epl update(Epl epl);       // returns null if did not exit, otherwise epl as it was previous to update (put in any case)
    Epl delete(String svcId);    // returns null if not found, otherwise svc as it was previous to delete
    int count();               // number of Epl stored in the repo
    public void dump(int tab); // print out contents of the repo
    List<Epl> getAll();
}