1 package com.atlassian.johnson.setup;
2
3 import com.atlassian.johnson.Initable;
4
5 /**
6 * This class determines whether an application is setup or not
7 */
8 public interface SetupConfig extends Initable
9 {
10 boolean isSetup();
11
12 boolean isSetupPage(String uri);
13 }