-
Notifications
You must be signed in to change notification settings - Fork 581
Fix issue-2852 : Improve javadoc for getCacheManager() methods in Ehc… #3090
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+27
−10
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -86,7 +86,24 @@ public CacheManager getCacheManager(URI uri, ClassLoader classLoader, Properties | |
| } | ||
|
|
||
| /** | ||
| * Enables to create a JSR-107 {@link CacheManager} based on the provided Ehcache {@link Configuration}. | ||
| * <p> | ||
| * This method behaves exactly like {@link #getCacheManager(URI, ClassLoader, Properties)}. | ||
| * </p><p> | ||
| * Requests a JSR-107 {@link CacheManager} is configured according to the specification, | ||
| * specific {@link URI} be made available that uses provided {@link ClassLoader} and | ||
| * {@link ClassLoader} is specified in the {@link Configuration}. | ||
| * </p><p> | ||
| * Multiple calls to this method with the same {@link URI} and {@link ClassLoader} will return | ||
| * the same {@link CacheManager} instance. | ||
| * If a previously returned {@link CacheManager} has been closed | ||
| * then a new {@link CacheManager} instance would be return. | ||
| * </p><p> | ||
| * {@link Configuration} is used in construction of a {@link CacheManager} | ||
| * and to form identity of the CacheManager. | ||
| * </p><p> | ||
| * If a second call is made with the same {@link URI} and {@link ClassLoader} with different properties, | ||
| * the {@link CacheManager} that was created in the first call would be returned. | ||
| * </p> | ||
| * | ||
| * @param uri the URI identifying this cache manager | ||
| * @param config the Ehcache configuration to use | ||
|
|
@@ -98,8 +115,26 @@ public CacheManager getCacheManager(URI uri, Configuration config) { | |
| } | ||
|
|
||
| /** | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. /**
* Requests a {@link CacheManager} configured according to the provided
* configuration be made available.
* <p>
* Multiple calls to this method with the same {@link URI} and configured
* {@link Configuration#getClassLoader() config.getClassLoader()}
* must return the same {@code CacheManager} instance,
* except if a previously returned {@code CacheManager} has been closed.
* <p>
* Properties are passed through and can be retrieved via {@link CacheManager#getProperties()}.
*
* @param uri the URI identifying the cache manager
* @param config the configuration for the cache manager
* @param properties the {@code Properties} for the cache manager
*
* @throws CacheException if a cache manager for the specified arguments could not be produced
* @throws NullPointerException if {@code uri} or {@code config} is {@code null}
*/ |
||
| * Enables to create a JSR-107 {@link CacheManager} based on the provided Ehcache {@link Configuration} with the | ||
| * provided {@link Properties}. | ||
| * <p> | ||
| * This method behaves exactly like {@link #getCacheManager(URI, ClassLoader, Properties)}. | ||
| * </p><p> | ||
| * Requests a JSR-107 {@link CacheManager} is configured according to the specification, | ||
| * specific {@link URI} be made available that uses provided {@link ClassLoader} and | ||
| * {@link ClassLoader} is specified in the {@link Configuration}. | ||
| * </p><p> | ||
| * Multiple calls to this method with the same {@link URI} and {@link ClassLoader} will return | ||
| * the same {@link CacheManager} instance. | ||
| * If a previously returned {@link CacheManager} has been closed | ||
| * then a new {@link CacheManager} instance would be return. | ||
| * </p><p> | ||
| * {@link Configuration} is used in construction of a {@link CacheManager} | ||
| * and to form identity of the CacheManager. | ||
| * </p><p> | ||
| * {@link Properties} is used in construction of a new {@link CacheManager} instance when it does not exists. | ||
| * </p><p> | ||
| * If a second call is made with the same {@link URI} and {@link ClassLoader} with different properties, | ||
| * the {@link CacheManager} that was created in the first call would be returned. | ||
| * </p> | ||
| * | ||
| * @param uri the URI identifying this cache manager | ||
| * @param config the Ehcache configuration to use | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.