View Javadoc

1   package com.atlassian.plugin.mock;
2   
3   /**
4    * This is a class that just contains a version property, used to test that classes bundled into plugins will override
5    * the same classes from the container (so, for example, a plugin can use a newer version of a library that ships
6    * with Confluence).
7    */
8   public class MockVersionedClass
9   {
10      public int getVersion()
11      {
12          return 1;
13      }
14  }