1   package com.atlassian.pageobjects;
2   
3   /**
4    * The product instance being tested
5    */
6   public interface ProductInstance
7   {
8       /**
9        * @return The base URL of the instance.  Cannot be null.
10       */
11      String getBaseUrl();
12  
13      /**
14       * @return The HTTP port
15       */
16      int getHttpPort();
17  
18      /**
19       * @return The context path, starting with "/".  Cannot be null.
20       */
21      String getContextPath();
22  
23      /**
24       * @return The instance id.  Cannot be null.
25       */
26      String getInstanceId();
27  }