View Javadoc

1   package com.atlassian.plugins.rest.mvc;
2   
3   import com.atlassian.plugins.rest.common.security.AnonymousAllowed;
4   
5   import javax.ws.rs.Path;
6   
7   @Path("velocity")
8   @AnonymousAllowed
9   public class Velocity
10  {
11      public static final String TITLE = "This is a Title";
12      public static final String SUB_TITLE = "This is a sub-title";
13  
14      public String getTitle()
15      {
16          return TITLE;
17      }
18  
19      public String getSubtitle()
20      {
21          return SUB_TITLE;
22      }
23  }