1 package com.atlassian.plugin.refimpl;
2
3 public class ParameterUtils
4 {
5 public static String getBaseUrl()
6 {
7 String port = System.getProperty("http.port", "8080");
8 return System.getProperty("baseurl", "http://localhost:" + port + "/atlassian-plugins-refimpl");
9 }
10 }