net.java.ao.it.model.Chair 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;
public interface Chair extends Entity {
String getColour();
void setColour(String colour);
}