Uses of Class
com.atlassian.confluence.core.PersistentDecorator

Packages that use PersistentDecorator
com.atlassian.confluence.themes   
com.atlassian.confluence.themes.persistence   
com.atlassian.confluence.themes.persistence.hibernate   
 

Uses of PersistentDecorator in com.atlassian.confluence.themes
 

Methods in com.atlassian.confluence.themes that return PersistentDecorator
 PersistentDecorator DefaultCustomLayoutManager.getPersistentDecorator(java.lang.String spaceKey, java.lang.String decoratorName)
           
 PersistentDecorator CustomLayoutManager.getPersistentDecorator(java.lang.String spaceKey, java.lang.String decoratorName)
          Retrieves a custom decorator for the (spaceKey, name) combination.
 

Methods in com.atlassian.confluence.themes that return types with arguments of type PersistentDecorator
 java.util.Collection<PersistentDecorator> DefaultCustomLayoutManager.getApplicableCustomDecoratorsForSpace(java.lang.String spaceKey)
           
 java.util.Collection<PersistentDecorator> CustomLayoutManager.getApplicableCustomDecoratorsForSpace(java.lang.String spaceKey)
          Returns allcustom decorators that apply to a space, whether they are space level or global level.
 java.util.Collection<PersistentDecorator> DefaultCustomLayoutManager.getCustomGlobalDecorators()
           
 java.util.Collection<PersistentDecorator> CustomLayoutManager.getCustomGlobalDecorators()
          Returns all global custom decorators (does not retrieve space level decorators)
 java.util.Collection<PersistentDecorator> DefaultCustomLayoutManager.getCustomSpaceDecorators(java.lang.String spaceKey)
           
 java.util.Collection<PersistentDecorator> CustomLayoutManager.getCustomSpaceDecorators(java.lang.String spaceKey)
          Returns all custom decorators defined for a specific space only (does not retrieve global decorators)
 

Methods in com.atlassian.confluence.themes with parameters of type PersistentDecorator
 void DefaultCustomLayoutManager.remove(PersistentDecorator persistentDecorator)
           
 void CustomLayoutManager.remove(PersistentDecorator persistentDecorator)
          Removes the given custom decorator, and flushes it from the velocity cache
 void DefaultCustomLayoutManager.saveOrUpdate(PersistentDecorator persistentDecorator)
           
 void CustomLayoutManager.saveOrUpdate(PersistentDecorator persistentDecorator)
          Saves the given decorator (or updates it if it already exists), and updates the velocity cache
 

Uses of PersistentDecorator in com.atlassian.confluence.themes.persistence
 

Methods in com.atlassian.confluence.themes.persistence that return PersistentDecorator
 PersistentDecorator PersistentDecoratorDao.get(java.lang.String spaceKey, java.lang.String name)
           
 

Methods in com.atlassian.confluence.themes.persistence with parameters of type PersistentDecorator
 void PersistentDecoratorDao.remove(PersistentDecorator decorator)
           
 void PersistentDecoratorDao.saveOrUpdate(PersistentDecorator decorator)
           
 

Uses of PersistentDecorator in com.atlassian.confluence.themes.persistence.hibernate
 

Methods in com.atlassian.confluence.themes.persistence.hibernate that return PersistentDecorator
 PersistentDecorator DefaultPersistentDecoratorDao.get(java.lang.String spaceKey, java.lang.String name)
           
 PersistentDecorator DefaultPersistentDecoratorDao.getFromDB(java.lang.String spaceKey, java.lang.String name)
           
 

Methods in com.atlassian.confluence.themes.persistence.hibernate with parameters of type PersistentDecorator
 void DefaultPersistentDecoratorDao.remove(PersistentDecorator decorator)
           
 void DefaultPersistentDecoratorDao.saveOrUpdate(PersistentDecorator decorator)
          If a decorator already exists with a certain space key and name, we should try to update it (and not try to create a new one just because the body field is different) (a composite key has not been used for space key and name because spacek key can be null)
 



Copyright © 2003-2014 Atlassian. All Rights Reserved.