net.java.ao.it.model.Score 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.Entity;
import net.java.ao.OneToMany;
public interface Score extends Entity {
String getPlayer();
void setPlayer(String competitor);
String getGame();
void setGame(String game);
void setScore(int score);
int getScore();
}