net.java.ao.it.model.ScoreWithCount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activeobjects-integration-test-model Show documentation
Show all versions of activeobjects-integration-test-model Show documentation
This is the model used for integration testing!
package net.java.ao.it.model;
import net.java.ao.schema.Table;
@Table("SCORE")
public interface ScoreWithCount extends Score {
void setCount(int count);
int getCount();
}