aboutsummaryrefslogtreecommitdiffstats
path: root/evc/evcbase/src/main/java/com/cablelabs/vcpe/evc/evcbase/repository/EvcRespository.java
blob: 3defb28e4c08cb08c6961c5c732dc4d3eb99b40e (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
/*******************************************************************************
* 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.evc.evcbase.repository;

import com.cablelabs.vcpe.evc.evcbase.model.Evc;

import java.util.List;

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

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