Commit f7dca165 authored by Grzegorz Pietrusza's avatar Grzegorz Pietrusza

add repository interface

parent b100227a
package com.jifwin.ctf.db;
public interface Repository<T>
{
public void add(T t);
public void delete(final String id);
public void update(T t);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment