1 31 32 package org.opencms.cache; 33 34 import org.opencms.i18n.A_CmsMessageBundle; 35 import org.opencms.i18n.I_CmsMessageBundle; 36 37 46 public final class Messages extends A_CmsMessageBundle { 47 48 49 public static final String LOG_CACHE_COSTS_TOO_HIGH_2 = "LOG_CACHE_COSTS_TOO_HIGH_2"; 50 51 52 private static final String BUNDLE_NAME = "org.opencms.cache.messages"; 53 54 55 private static final I_CmsMessageBundle INSTANCE = new Messages(); 56 57 60 private Messages() { 61 62 } 64 65 70 public static I_CmsMessageBundle get() { 71 72 return INSTANCE; 73 } 74 75 80 public String getBundleName() { 81 82 return BUNDLE_NAME; 83 } 84 85 } 86 | Popular Tags |