001    /*
002     * Copyright © Sartini IT Solutions, 2010.
003     */
004    
005    package org.tynamo.jpa.sample.services;
006    
007    import org.tynamo.jpa.annotations.CommitAfter;
008    
009    /**
010     * Created by IntelliJ IDEA.
011     * User: ps
012     * Date: 13.01.2010
013     * Time: 15:14:54
014     * To change this template use File | Settings | File Templates.
015     */
016    public interface TestService {
017            @CommitAfter void addTestEntity();
018            @CommitAfter void removeTestEntity(long id);
019    }