001 002package org.opencms.report.wrapper; 003 004import org.opencms.i18n.A_CmsMessageBundle; 005import org.opencms.i18n.I_CmsMessageBundle; 006 007/** 008 * Bundle with the keys of report messages<p> 009 * 010 * @author Daniel Seidel 011 * 012 * @version $Revision: 1.0 $ 013 * 014 * @since 12.0.0 015 */ 016public final class DefaultReportMessages extends A_CmsMessageBundle { 017 018 /** Name of the used resource bundle. */ 019 private static final String BUNDLE_NAME = "org.opencms.report.wrapper.defaultreportmessages"; 020 021 /** Static instance member. */ 022 private static final I_CmsMessageBundle INSTANCE = new DefaultReportMessages(); 023 024 /** Message key. */ 025 public static final String REPORT_OK_0 = "REPORT_OK_0"; 026 027 /** Message key. */ 028 public static final String REPORT_OK_NO_DOTS_0 = "REPORT_OK_NO_DOTS_0"; 029 030 /** Message key. */ 031 public static final String REPORT_FAILED_0 = "REPORT_FAILED_0"; 032 033 /** Message key. */ 034 public static final String REPORT_FAILED_NO_DOTS_0 = "REPORT_FAILED_NO_DOTS_0"; 035 036 /** Message key. */ 037 public static final String REPORT_SKIPPED_0 = "REPORT_SKIPPED_0"; 038 039 /** Message key. */ 040 public static final String REPORT_SKIPPED_NO_DOTS_0 = "REPORT_SKIPPED_NO_DOTS_0"; 041 042 /** 043 * Hides the public constructor for this utility class.<p> 044 */ 045 private DefaultReportMessages() { 046 047 // hide the constructor 048 } 049 050 /** 051 * Returns an instance of this localized message accessor.<p> 052 * 053 * @return an instance of this localized message accessor 054 */ 055 public static I_CmsMessageBundle get() { 056 057 return INSTANCE; 058 } 059 060 /** 061 * Returns the bundle name for this OpenCms package.<p> 062 * 063 * @return the bundle name for this OpenCms package 064 */ 065 @Override 066 public String getBundleName() { 067 068 return BUNDLE_NAME; 069 } 070 071}