ca.uhn.fhir.tls.BaseStoreInfo Maven / Gradle / Ivy
/*-
* #%L
* HAPI FHIR - Core Library
* %%
* Copyright (C) 2014 - 2024 Smile CDR, Inc.
* %%
* 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.
* #L%
*/
package ca.uhn.fhir.tls;
import ca.uhn.fhir.i18n.Msg;
import org.apache.commons.io.FilenameUtils;
import static org.apache.commons.lang3.StringUtils.isBlank;
public abstract class BaseStoreInfo {
private final String myFilePath;
private final PathType myPathType;
private final char[] myStorePass;
private final String myAlias;
private final KeyStoreType myType;
public BaseStoreInfo(String theFilePath, String theStorePass, String theAlias) {
if (theFilePath.startsWith(PathType.RESOURCE.getPrefix())) {
myFilePath = theFilePath.substring(PathType.RESOURCE.getPrefix().length());
myPathType = PathType.RESOURCE;
} else if (theFilePath.startsWith(PathType.FILE.getPrefix())) {
myFilePath = theFilePath.substring(PathType.FILE.getPrefix().length());
myPathType = PathType.FILE;
} else {
throw new StoreInfoException(Msg.code(2117) + "Invalid path prefix");
}
myStorePass = toCharArray(theStorePass);
myAlias = theAlias;
String extension = FilenameUtils.getExtension(theFilePath);
myType = KeyStoreType.fromFileExtension(extension);
}
public String getFilePath() {
return myFilePath;
}
public char[] getStorePass() {
return myStorePass;
}
public String getAlias() {
return myAlias;
}
public KeyStoreType getType() {
return myType;
}
public PathType getPathType() {
return myPathType;
}
protected char[] toCharArray(String theString) {
return isBlank(theString) ? "".toCharArray() : theString.toCharArray();
}
public static class StoreInfoException extends RuntimeException {
private static final long serialVersionUID = 1l;
public StoreInfoException(String theMessage) {
super(theMessage);
}
}
}