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 mentions.
10   * <p style="color: red">
11   * DOCUMENTATION COMING SOON
12   * </p>
13   */
14  @Path("/" + Protocol.PATH_MENTIONS)
15  public class Mentions extends Crud {
16  
17      public Mentions() {
18          super(KS.MENTION);
19      }
20  
21  }