Deprecated API


Contents
Deprecated Classes
org.loom.action.AbstractActionImpl
          use AbstractAction instead. To be removed in 1.1 
org.loom.config.Config
          use Lookup or plain injection instead. 
org.loom.tags.messages.ErrorsTag
          use messages instead 
org.loom.persistence.ExtendedHibernateJpaVendorAdapter
          use HibernateExtendedJpaVendorAdapter instead 
org.loom.json.JsonMarshaller
          use jackson ObjectMapper instead 
org.loom.resolution.JsonResolution
          use JacksonResolution instead (available via AbstractAction.json(contents)) 
org.loom.filter.StaticResourcesFilter
          You will get better performance just by putting your cached resources together in a certain folder and caching the entire folder. 
 

Deprecated Exceptions
org.loom.exception.BusinessException
          use LocaleAwareException instead. To be removed in 1.1 
 

Deprecated Fields
org.loom.annotation.validation.StringValidation.WEB_IMAGE_MASK
          use ImageValidation instead 
 

Deprecated Methods
org.loom.resolution.AbstractHttpResolution.addDateHeader(String, Date)
          use addHeader(String, Object) instead 
org.loom.action.AbstractAction.addError(Message)
          use addMessage() instead 
org.loom.action.AbstractAction.addError(String)
          use error() instead 
org.loom.action.AbstractAction.addError(String, String)
          use error() instead 
org.loom.resolution.AbstractHttpResolution.addIntHeader(String, int)
          use addHeader(String, Object) instead 
org.loom.i18n.Messages.addMessage(String)
          use error(messageKey) instead 
org.loom.i18n.Messages.addMessage(String, String)
          use error(propertyPath, messageKey) instead 
org.loom.resolution.RedirectResolution.addParameter(String, Object)
          use RedirectResolution.add(String, Object) instead 
org.loom.url.UrlBuilder.addParameter(String, Object)
          use UrlBuilder.add(String, Object) instead 
org.loom.resolution.RedirectResolution.addPropertyParameter(String)
          use RedirectResolution.addProperty(String) instead 
org.loom.log.Log.fatal(Throwable, Object...)
          use error() instead 
org.loom.config.Config.getLocaleResolver()
          Use getLoomServletRequestFactory().getLocaleResolver() instead 
org.loom.log.Log.getLog()
          use getLog(Class) instead. This class instantiates an Exception to calculate the stack trace, which consumes resources on deployment time. 
org.loom.config.Config.getMessagesRepositoryFactory()
          Use getLoomServletRequestFactory().getMessagesRepositoryFactory() instead 
org.loom.action.AbstractAction.getParam(String)
          use getPropertyAsString instead 
org.loom.servlet.LoomServletRequest.getRequestUrlWithParameters()
          use toUrlBuilder().getURL() instead 
org.loom.util.ClassUtils.getShortName(Class)
          use Class.getSimpleName() instead 
org.loom.url.UrlBuilder.getURL(LoomServletRequest)
          use getURL() instead 
org.loom.mapping.Event.getValidators()
          this method will be removed with no replacement 
org.loom.paged.PagedListCriteria.isCalculateTotal()
          use calculateTotal() instead 
org.loom.resolution.RedirectResolution.removeParameter(String)
          use RedirectResolution.remove(String) instead 
org.loom.url.UrlBuilder.removeParameter(String)
          use UrlBuilder.remove(String) instead 
org.loom.resolution.RedirectResolution.replaceParameter(String, Object)
          use RedirectResolution.replace(String, Object) instead 
org.loom.url.UrlBuilder.replaceParameter(String, Object)
          use UrlBuilder.replace(String, Object) instead 
org.loom.resolution.ForwardResolution.setAttribute(String, Object)
          use ForwardResolution.set(java.lang.String, java.lang.Object) instead 
org.loom.tags.menu.MenuTag.setCache(String)
          since Loom 2.0 this attribute will be ignored (see #LOOM-231). Instead, use l:cached 
org.loom.servlet.CacheControl.setCacheDays(int)
          use withDays(int) instead 
org.loom.servlet.CacheControl.setCacheForever()
          use forEver() instead 
org.loom.servlet.CacheControl.setCacheHours(int)
          use withHours(int) instead 
org.loom.servlet.CacheControl.setCacheMinutes(int)
          use withMinutes(int) instead 
org.loom.servlet.CacheControl.setCacheNever()
          use never() instead 
org.loom.servlet.CacheControl.setCacheSeconds(Integer)
          use withSeconds(Integer) instead 
org.loom.servlet.CacheControl.setCacheYears(int)
          use withDays(int) instead 
org.loom.resolution.AbstractHttpResolution.setDateHeader(String, Date)
          use setHeader(String, Object) instead 
org.loom.resolution.AbstractHttpResolution.setDateHeaderIfNotPresent(String, Date)
          use setHeaderIfNotPresent(String, Object) instead 
org.loom.servlet.CacheControl.setEtag(String)
          use withEtag() instead 
org.loom.tags.menu.MenuItemTag.setI18n(boolean)
          use translateLabel instead 
org.loom.resolution.AbstractHttpResolution.setIntHeader(String, int)
          use setHeader(String, Object) instead 
org.loom.resolution.AbstractHttpResolution.setIntHeaderIfNotPresent(String, int)
          use setHeaderIfNotPresent(String, Object) instead 
org.loom.resolution.AbstractHttpResolution.setJsonHeader(JsonMarshaller)
          use jackson instead 
org.loom.servlet.CacheControl.setLastModified(Date)
          use withLastModified() instead 
org.loom.tags.exception.ExceptionTag.setMessageTag(String)
          use setTitleTag instead 
org.loom.persistence.file.ExternalFileManager.setStorageRoot(String)
          use setRootFolderLocation() instead 
org.loom.tags.paged.ColumnTag.setTitle(String)
          use header instead 
 

Deprecated Constructors
org.loom.exception.LocaleAwareException(String, String)
          use LocaleAwareException.LocaleAwareException(String) instead 
org.loom.exception.LocaleAwareException(String, String, Throwable)
          use LocaleAwareException.LocaleAwareException(String, Throwable) instead