-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* begin v2.1.0 dev Signed-off-by: Edi Permadi <[email protected]> * deny adding the same path to container twice (closes #33) Signed-off-by: Edi Permadi <[email protected]> * change exception message Signed-off-by: Edi Permadi <[email protected]> * ensure no certificate added twice. closes #34 Signed-off-by: Edi Permadi <[email protected]> * update doc Signed-off-by: Edi Permadi <[email protected]> * update doc Signed-off-by: Edi Permadi <[email protected]> * added tag creation feature, closes #16 Signed-off-by: Edi Permadi <[email protected]> * update doc Signed-off-by: Edi Permadi <[email protected]> * assign tag to blob. closes #18 Signed-off-by: Edi Permadi <[email protected]> * get tag value by tag uuid. closes #35 Signed-off-by: Edi Permadi <[email protected]> * rename BlobPool functions Signed-off-by: Edi Permadi <[email protected]> * added remove tag from blob feature. close #19 Signed-off-by: Edi Permadi <[email protected]> * added feature to update tag. close #20 Signed-off-by: Edi Permadi <[email protected]> * added feature to remove tag. close #17 Signed-off-by: Edi Permadi <[email protected]> * bump to v2.1.0 Signed-off-by: Edi Permadi <[email protected]>
- Loading branch information
1 parent
60c96dd
commit 047f6db
Showing
12 changed files
with
529 additions
and
42 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
16 changes: 16 additions & 0 deletions
16
src/main/java/com/github/edipermadi/security/blobfish/exc/BlobAlreadyExistException.java
This file contains 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.github.edipermadi.security.blobfish.exc; | ||
|
||
/** | ||
* An exception denoting a particular path is already associated to a blob | ||
* | ||
* @author Edi Permadi | ||
*/ | ||
public final class BlobAlreadyExistException extends BlobfishEncodeException { | ||
|
||
/** | ||
* Class constructor | ||
*/ | ||
public BlobAlreadyExistException() { | ||
super("blob already exist"); | ||
} | ||
} |
This file contains 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
Oops, something went wrong.