-
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.
feat: implement authorization configuration ability & support for MFA…
…, replace deprecated JwtHelper from one of two places of usage
- Loading branch information
Aiosa
committed
Dec 6, 2024
1 parent
9862072
commit 8636b4a
Showing
19 changed files
with
409 additions
and
92 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
51 changes: 51 additions & 0 deletions
51
src/main/java/org/cbioportal/persistence/mybatis/StudyGroupMapper.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,51 @@ | ||
/* | ||
* Copyright (c) 2015 Memorial Sloan-Kettering Cancer Center. | ||
* | ||
* This library is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS | ||
* FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder | ||
* is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no | ||
* obligations to provide maintenance, support, updates, enhancements or | ||
* modifications. In no event shall Memorial Sloan-Kettering Cancer Center be | ||
* liable to any party for direct, indirect, special, incidental or | ||
* consequential damages, including lost profits, arising out of the use of this | ||
* software and its documentation, even if Memorial Sloan-Kettering Cancer | ||
* Center has been advised of the possibility of such damage. | ||
*/ | ||
|
||
/* | ||
* This file is part of cBioPortal. | ||
* | ||
* cBioPortal is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.cbioportal.persistence.mybatis; | ||
|
||
// imports | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
/** | ||
* Interface to use to retrieve | ||
* portal user information. | ||
*/ | ||
public interface StudyGroupMapper { | ||
/** | ||
* Given an internal cancer study id, returns groups string. | ||
* Returns null if cancer study does not exist. | ||
* | ||
* @param internalCancerStudyId Integer | ||
* @return String groups | ||
*/ | ||
String getCancerStudyGroups(Integer internalCancerStudyId); | ||
} |
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.