1 package com.atlassian.config;
2
3 import javax.servlet.ServletContext;
4
5 /**
6 * Used to find application home properties
7 */
8 public interface HomeLocator
9 {
10 String getHomePath();
11
12 String getConfigFileName();
13
14 void lookupServletHomeProperty(ServletContext context);
15 }