-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ELY-2320] Add integrity support to FileSystemSecurityRealm
- Loading branch information
Showing
9 changed files
with
1,175 additions
and
445 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
387 changes: 359 additions & 28 deletions
387
auth/realm/base/src/main/java/org/wildfly/security/auth/realm/FileSystemSecurityRealm.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
71 changes: 71 additions & 0 deletions
71
auth/realm/base/src/main/java/org/wildfly/security/auth/realm/IntegrityException.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,71 @@ | ||
/* | ||
* JBoss, Home of Professional Open Source. | ||
* Copyright 2022 Red Hat, Inc., and individual contributors | ||
* as indicated by the @author tags. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.wildfly.security.auth.realm; | ||
|
||
import java.io.IOException; | ||
|
||
/** | ||
* Exception to indicate a general failure related to the Integrity Verification of the Filesystem Realm. | ||
* | ||
* @author <a href="mailto:[email protected]">Ashpan Raskar</a> | ||
*/ | ||
public class IntegrityException extends IOException { | ||
|
||
|
||
private static final long serialVersionUID = 8889252552074803941L; | ||
|
||
/** | ||
* Constructs a new {@code IntegrityException} instance. The message is left blank ({@code null}), and no | ||
* cause is specified. | ||
*/ | ||
public IntegrityException() { | ||
} | ||
|
||
/** | ||
* Constructs a new {@code IntegrityException} instance with an initial message. No cause is specified. | ||
* | ||
* @param msg the message | ||
*/ | ||
public IntegrityException(final String msg) { | ||
super(msg); | ||
} | ||
|
||
/** | ||
* Constructs a new {@code IntegrityException} instance with an initial cause. If a non-{@code null} cause | ||
* is specified, its message is used to initialize the message of this {@code IntegrityException}; otherwise | ||
* the message is left blank ({@code null}). | ||
* | ||
* @param cause the cause | ||
*/ | ||
public IntegrityException(final Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
/** | ||
* Constructs a new {@code IntegrityException} instance with an initial message and cause. | ||
* | ||
* @param msg the message | ||
* @param cause the cause | ||
*/ | ||
public IntegrityException(final String msg, final Throwable cause) { | ||
super(msg, cause); | ||
} | ||
|
||
} | ||
|
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
Oops, something went wrong.