mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

kenneth_suter
15.34.2007 cfc513043c5830b5a967733066068c7097b42e3c
opendj-sdk/opends/src/server/org/opends/server/admin/PropertyDefinition.java
@@ -26,6 +26,7 @@
 */
package org.opends.server.admin;
import org.opends.messages.Message;
@@ -467,7 +468,7 @@
   *         the default locale, or <code>null</code> if there is no
   *         description.
   */
  public final String getDescription() {
  public final Message getDescription() {
    return getDescription(Locale.getDefault());
  }
@@ -483,7 +484,7 @@
   *         the specified locale, or <code>null</code> if there is
   *         no description.
   */
  public final String getDescription(Locale locale) {
  public final Message getDescription(Locale locale) {
    ManagedObjectDefinitionI18NResource resource =
      ManagedObjectDefinitionI18NResource.getInstance();
    String property = "property." + propertyName + ".description";
@@ -528,7 +529,7 @@
   * @return Returns the synopsis of this property definition in the
   *         default locale.
   */
  public final String getSynopsis() {
  public final Message getSynopsis() {
    return getSynopsis(Locale.getDefault());
  }
@@ -543,7 +544,7 @@
   * @return Returns the synopsis of this property definition in the
   *         specified locale.
   */
  public final String getSynopsis(Locale locale) {
  public final Message getSynopsis(Locale locale) {
    ManagedObjectDefinitionI18NResource resource =
      ManagedObjectDefinitionI18NResource.getInstance();
    String property = "property." + propertyName + ".synopsis";