package com.phonoforce.tramory.rest.resources; import com.phonoforce.tramory.entities.Label; import javax.ws.rs.Path; @Path("/labels") public class LabelResource extends Resource<Label> { public LabelResource() { super(Label.class); } }