Code Review
/
sdc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f1edc1e0c06b1cb87a1c1da09e69cfc30df5a5f4
[sdc.git]
/
1
package org.openecomp.sdc.versioning.dao;
2
3
import org.openecomp.sdc.versioning.types.Item;
4
5
import java.util.Collection;
6
7
public interface ItemDao {
8
Collection<Item> list();
9
10
Item get(Item item);
11
12
Item create(Item item);
13
14
void update(Item item);
15
}