Interface PersistentDecoratorDao
-
- All Known Implementing Classes:
CachingPersistentDecoratorDao
@Transactional public interface PersistentDecoratorDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable PersistentDecorator
get(@Nullable String spaceKey, String name)
void
remove(PersistentDecorator decorator)
void
saveOrUpdate(PersistentDecorator decorator)
-
-
-
Method Detail
-
saveOrUpdate
void saveOrUpdate(PersistentDecorator decorator)
-
get
@Transactional(readOnly=true) @Nullable PersistentDecorator get(@Nullable String spaceKey, String name)
-
remove
void remove(PersistentDecorator decorator)
-
-