View Javadoc
1   package integrationTests;
2   
3   /**
4    * The Class ClassLoadedByCustomLoaderOnly.
5    */
6   public final class ClassLoadedByCustomLoaderOnly {
7   
8       /** The value. */
9       private final String value;
10  
11      /**
12       * Instantiates a new class loaded by custom loader only.
13       *
14       * @param value
15       *            the value
16       */
17      public ClassLoadedByCustomLoaderOnly(String value) {
18          this.value = value;
19      }
20  
21      /**
22       * Gets the value.
23       *
24       * @return the value
25       */
26      public String getValue() {
27          return value;
28      }
29  }