Uses of Class
org.craftercms.core.exception.InvalidScopeException
-
Packages that use InvalidScopeException Package Description org.craftercms.core.cache org.craftercms.core.cache.impl org.craftercms.core.service org.craftercms.core.service.impl org.craftercms.core.store.impl -
-
Uses of InvalidScopeException in org.craftercms.core.cache
Methods in org.craftercms.core.cache that throw InvalidScopeException Modifier and Type Method Description voidCache. clearScope(String scope)Clears the contents of the specified scope in the cache.CacheItemCache. get(String scope, Object key)Retrieves an item from a scope.Collection<Object>Cache. getKeys(String scope)Returns a list of the keys of the items present in the specified scope.intCache. getSize(String scope)Returns the quantity of items present in the specified scope.booleanCache. hasKey(String scope, Object key)Returns true if there's and item with the specified key in the specified scope.voidCache. put(String scope, Object key, Object value)Puts an item in a scope.voidCache. put(String scope, Object key, Object value, long expireAfter, long refreshFrequency, CacheLoader loader, Object... loaderParams)Puts and item in a scope.booleanCache. remove(String scope, Object key)Removes an item from a scope.voidCache. removeScope(String scope)Removes an existing scope and all the items that are in it. -
Uses of InvalidScopeException in org.craftercms.core.cache.impl
Methods in org.craftercms.core.cache.impl that throw InvalidScopeException Modifier and Type Method Description voidCacheImpl. clearScope(String scope)Clears the contents of the specified scope in the cache.CacheItemCacheImpl. get(String scope, Object key)Retrieves an item from a scope.Collection<Object>CacheImpl. getKeys(String scope)Returns a list of the keys of the items present in the specified scope.intCacheImpl. getSize(String scope)Returns the quantity of items present in the specified scope.booleanCacheImpl. hasKey(String scope, Object key)Returns true if there's and item with the specified key in the specified scope.voidCacheImpl. put(String scope, Object key, Object value)Puts an item in a scope.voidCacheImpl. put(String scope, Object key, Object value, long expireAfter, long refreshFrequency, CacheLoader loader, Object... loaderParams)Puts and item in a scope.booleanCacheImpl. remove(String scope, Object key)Removes an item from a scope.voidCacheImpl. removeScope(String scope)Removes an existing scope and all the items that are in it. -
Uses of InvalidScopeException in org.craftercms.core.service
Methods in org.craftercms.core.service that throw InvalidScopeException Modifier and Type Method Description default ContentContentStoreService. getContent(Context context, String url)Returns the content of the file for the given url. -
Uses of InvalidScopeException in org.craftercms.core.service.impl
Methods in org.craftercms.core.service.impl that throw InvalidScopeException Modifier and Type Method Description ContentContentStoreServiceImpl. getContent(Context context, CachingOptions cachingOptions, String url)Returns the content of the file for the given url. -
Uses of InvalidScopeException in org.craftercms.core.store.impl
Methods in org.craftercms.core.store.impl that throw InvalidScopeException Modifier and Type Method Description booleanAbstractFileBasedContentStoreAdapter. doExists(Context context, CachingOptions cachingOptions, String path)
-