These are guidelines related to the development of Confluence. The guidelines mainly apply to Atlassian employees, but reading them should provide insight for third-party plugin developers as well, so we decided to make them public.
Since Confluence doesn't have a complete API yet, you should assume that any change you make to manager interfaces, model objects, services, or really any commonly used code will in some way impact third-party plugin developers. As such, we should always be careful to deprecate, rather than remove old functionality.
The right way to deprecate
All deprecated methods in Confluence must include:
@deprecated
tag, followed by@Deprecated
annotation on the method.See examples below for more help on presenting deprecated code.
To keep third-party developers happy, we should deprecate methods that may be used by plugins instead of just deleting them. However, deprecated methods pollute the namespace, and keeping them around indefinitely just encourages people to continue to use them.
Therefore, we should record when a method has been deprecated. Anything that has been deprecated will be regularly removed.
The use of the @Deprecated
annotation also allows runtime tooling to discover and alert about deprecated method usage.
Breaking changes in Confluence must only happen in the platform releases (ie: major version releases). Any planned breaking changes should be communicated with advance notice through the deprecation method and documentation.
Breaking changes should be deprecated at least 2 feature releases or six months ahead (whatever is smaller).
Upcoming breaking changes should be documented in "Preparing for Confluence X.X release" notes, in both the release that adds the deprecation (if any), and again in the release that will have the breaking change.
Important
Breaking changes, which are required for the platform upgrade may go with minimal forward notice and without deprecation.
For a simple redirect, the deprecation tag is the only Javadoc the method should require. Developers should consult the doc for the linked alternative to find out more about what the method is likely to do:
1 2/** @deprecated since 2.3 use {@link Space#isValidSpaceKey} */ @Deprecated boolean isValidSpaceKey(String key);
For a "this is no longer the right way to do things" deprecation, a longer explanation may be required, and the old Javadoc may need to be retained for developers who are still stuck doing things the old way for some reason. A short explanation is put in the deprecated tag itself, and the detail is put in the main body of the Javadoc:
1 2/** * Return all the content a user has authored in this space. * * <b>Warning:</b> This method has been deprecated since Confluence 2.1 because it is * insanely inefficient to do in the database. You should migrate your code to use the * SmartListManager instead, which will get the results from Lucene. * * @deprecated since 2.1 use the {@link SmartListManager} for complex queries */ @Deprecated List getContentInSpaceAuthoredBy(String spaceKey, String username);
Note that implementations of deprecated methods will result in compile warnings if they are not also marked as deprecated.
When deprecating a class or method in Confluence, you must remove the majority - if not all - of the usages of that class or method throughout Confluence. If you don't have the time or inclination to do so, you should probably not deprecate the method.
This makes sure that our own code doesn't violate our own deprecation unnecessarily, and also provides a sanity check for whether you should deprecate something or not. If it is used too many times inside Confluence to begin changing, it could well be the same for external code and you should think hard about deprecating such a frequently used method.
In some situations, maintaining deprecated methods may be impossible. For example:
Permission getPermission()
to List getPermissions()
, the former method would return dangerously incorrect information if it were maintained, and thus should be deleted.userManager.getAllUsers()
is being removed because it kills the server, we should not feel guilty forcing plugins to upgrade to the safe way of doing things.com.atlassian.confluence.api.impl
, com.atlassian.confluence.impl
and com.atlassian.confluence.internal
Rate this page: