org.minijax.db.test.Widget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minijax-db Show documentation
Show all versions of minijax-db Show documentation
Minijax database and entity model
package org.minijax.db.test;
import java.net.URI;
import javax.persistence.Entity;
import org.minijax.db.DefaultNamedEntity;
@Entity
public class Widget extends DefaultNamedEntity {
private static final long serialVersionUID = 1L;
public Widget() {
super();
}
public Widget(final String name) {
super(name);
}
@Override
public URI getUri() {
return URI.create("/widgets/" + getId());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy