1   package eu.fbk.knowledgestore.server.http.jaxrs;
2   
3   import javax.ws.rs.Path;
4   
5   import eu.fbk.knowledgestore.internal.jaxrs.Protocol;
6   import eu.fbk.knowledgestore.vocabulary.KS;
7   
8   /**
9    * Provide access to resources.
10   * <p style="color: red">
11   * DOCUMENTATION COMING SOON
12   * </p>
13   */
14  @Path("/" + Protocol.PATH_RESOURCES)
15  public class Resources extends Crud {
16  
17      public Resources() {
18          super(KS.RESOURCE);
19      }
20  
21  }