View Javadoc
1   package it.com.atlassian.refapp;
2   
3   public final class RefappTestURLs {
4   
5       private static final String PORT = System.getProperty("http.port", "5990");
6       private static final String CONTEXT = System.getProperty("context.path", "/refapp");
7   
8       public static final String BASEURL = "http://localhost:" + PORT + CONTEXT + "/";
9   
10      private RefappTestURLs() {}
11  }