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      public static final String TITLE = "This is a Title";
11      public static final String SUB_TITLE = "This is a sub-title";
12  
13      public String getTitle() {
14          return TITLE;
15      }
16  
17      public String getSubtitle() {
18          return SUB_TITLE;
19      }
20  }