net.java.ao.it.model.PersonChair 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 PersonChair extends Entity {
Person getPerson();
void setPerson(Person person);
Chair getChair();
void setChair(Chair chair);
}