View Javadoc

1   package com.atlassian.pageobjects;
2   
3   import java.lang.annotation.ElementType;
4   import java.lang.annotation.Retention;
5   import java.lang.annotation.RetentionPolicy;
6   import java.lang.annotation.Target;
7   
8   /**
9    * The default values for a {@link com.atlassian.pageobjects.TestedProduct}.
10   */
11  @Retention(RetentionPolicy.RUNTIME)
12  @Target(ElementType.TYPE)
13  public @interface Defaults {
14  
15      /**
16       * @return the default instance id
17       */
18      String instanceId();
19  
20      /**
21       * @return the default context path
22       */
23      String contextPath();
24  
25      /**
26       * @return the default HTTP port
27       */
28      int httpPort();
29  }