All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.minijax.db.test.Widget Maven / Gradle / Ivy

There is a newer version: 0.4.14
Show newest version
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