IGNITE-8237 Javadoc for method parameters added.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/ebe55e3f Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ebe55e3f Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ebe55e3f Branch: refs/heads/master Commit: ebe55e3ff84232f67a2885354e3e26426a6b16cb Parents: 54cb262 Author: dpavlov <[email protected]> Authored: Thu Apr 26 19:38:05 2018 +0300 Committer: dpavlov <[email protected]> Committed: Thu Apr 26 19:38:05 2018 +0300 ---------------------------------------------------------------------- .../ignite/internal/processors/cache/GridCacheProcessor.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/ebe55e3f/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java index 898380c..ccccdec 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java @@ -3379,6 +3379,8 @@ public class GridCacheProcessor extends GridProcessorAdapter { /** * Authorize creating cache. + * @param cfg Cache configuration. + * @param secCtx Optional security context. */ private void authorizeCacheCreate(CacheConfiguration cfg, SecurityContext secCtx) { ctx.security().authorize(null, SecurityPermission.CACHE_CREATE, secCtx); @@ -3390,6 +3392,7 @@ public class GridCacheProcessor extends GridProcessorAdapter { /** * Authorize dynamic cache management for this node. + * @param req start/stop cache request. */ private void authorizeCacheChange(DynamicCacheChangeRequest req) { // Null security context means authorize this node.
