135136137138139140141142
} } private void checkInitialized() { if (!isInitialized()) { throw new NotInitializedException("Configuration has not been initialized"); } }
301302303304305306307308309
* * @return the template repository */ public TemplateRepository getTemplateRepository() { if (!isInitialized()) { throw new NotInitializedException("Template Engine has not been initialized"); } return this.templateRepository; }
119120121122123124125126
* resolver to be already initialized. * </p> */ protected final void checkInitialized() { if (!isInitialized()) { throw new NotInitializedException("Message Resolver has not been initialized"); } }
151152153154155156157158
* resolver to be already initialized. * </p> */ protected final void checkInitialized() { if (!isInitialized()) { throw new NotInitializedException("Template Resolver has not been initialized"); } }
93949596979899100
return this.initialized; } private void checkInitialized() { if (!isInitialized()) { throw new NotInitializedException("Configuration has not been initialized"); } }