-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from italiangrid/fix-jwk-caching
Fixes: - Fix caching of remote JWK sets - move spring-boot version from 2.7.17 to 2.7.18 - added classes and dependencies necessary to remove jetty-utils - voms-api-java now is a direct dependency Fix: https://issues.infn.it/jira/browse/STOR-1603
- Loading branch information
Showing
19 changed files
with
1,575 additions
and
56 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
69 changes: 69 additions & 0 deletions
69
src/main/java/org/italiangrid/storm/webdav/oauth/utils/NoExpirationStringCache.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,69 @@ | ||
/** | ||
* Copyright (c) Istituto Nazionale di Fisica Nucleare, 2014-2023. | ||
* | ||
* 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.italiangrid.storm.webdav.oauth.utils; | ||
|
||
import java.util.concurrent.Callable; | ||
|
||
import org.springframework.cache.support.AbstractValueAdaptingCache; | ||
import org.springframework.lang.Nullable; | ||
|
||
public class NoExpirationStringCache extends AbstractValueAdaptingCache { | ||
|
||
private static final String NAME = "NoExpirationCache"; | ||
private final String value; | ||
|
||
public NoExpirationStringCache(String value) { | ||
super(false); | ||
this.value = value; | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return NAME; | ||
} | ||
|
||
@Override | ||
public Object getNativeCache() { | ||
return this; | ||
} | ||
|
||
@Override | ||
@Nullable | ||
protected Object lookup(Object key) { | ||
return value; | ||
} | ||
|
||
@Override | ||
public void put(Object key, Object value) { | ||
return; | ||
} | ||
|
||
@Override | ||
public void evict(Object key) { | ||
return; | ||
} | ||
|
||
@Override | ||
public void clear() { | ||
return; | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
@Override | ||
public <T> T get(Object key, Callable<T> valueLoader) { | ||
return (T) fromStoreValue(value); | ||
} | ||
} |
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.