NegoziazioneTokenDynamicParametersModIUtils.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.openspcoop2.pdd.core.token;
import java.lang.reflect.Method;
import org.openspcoop2.protocol.sdk.ProtocolException;
import org.openspcoop2.protocol.utils.ModIUtils;
/**
* NegoziazioneTokenDynamicParametersModIUtils
*
* @author Poli Andrea (apoli@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class NegoziazioneTokenDynamicParametersModIUtils {
private NegoziazioneTokenDynamicParametersModIUtils() {}
private static Object modIProperties = null;
private static synchronized void initModiProperties() throws ProtocolException {
if(modIProperties==null) {
try {
modIProperties = ModIUtils.getModiProperties();
}catch(Exception e) {
throw new ProtocolException(e.getMessage(),e);
}
}
}
private static Object getModiProperties() throws ProtocolException {
if(modIProperties==null) {
initModiProperties();
}
return modIProperties;
}
public static String getSicurezzaMessaggioCertificatiKeyStoreTipo() throws ProtocolException {
try {
Object instance = getModiProperties();
Method m = instance.getClass().getMethod("getSicurezzaMessaggioCertificatiKeyStoreTipo");
return (String) m.invoke(instance);
}catch(Exception e) {
throw new ProtocolException(e.getMessage(),e);
}
}
public static String getSicurezzaMessaggioCertificatiKeyStorePath() throws ProtocolException {
try {
if(getSicurezzaMessaggioCertificatiKeyStoreTipo()!=null) {
Object instance = getModiProperties();
Method m = instance.getClass().getMethod("getSicurezzaMessaggioCertificatiKeyStorePath");
return (String) m.invoke(instance);
}
return null;
}catch(Exception e) {
throw new ProtocolException(e.getMessage(),e);
}
}
public static String getSicurezzaMessaggioCertificatiKeyStorePassword() throws ProtocolException {
try {
if(getSicurezzaMessaggioCertificatiKeyStoreTipo()!=null) {
Object instance = getModiProperties();
Method m = instance.getClass().getMethod("getSicurezzaMessaggioCertificatiKeyStorePassword");
return (String) m.invoke(instance);
}
return null;
}catch(Exception e) {
throw new ProtocolException(e.getMessage(),e);
}
}
public static String getSicurezzaMessaggioCertificatiKeyAlias() throws ProtocolException {
try {
if(getSicurezzaMessaggioCertificatiKeyStoreTipo()!=null) {
Object instance = getModiProperties();
Method m = instance.getClass().getMethod("getSicurezzaMessaggioCertificatiKeyAlias");
return (String) m.invoke(instance);
}
return null;
}catch(Exception e) {
throw new ProtocolException(e.getMessage(),e);
}
}
public static String getSicurezzaMessaggioCertificatiKeyPassword() throws ProtocolException {
try {
if(getSicurezzaMessaggioCertificatiKeyStoreTipo()!=null) {
Object instance = getModiProperties();
Method m = instance.getClass().getMethod("getSicurezzaMessaggioCertificatiKeyPassword");
return (String) m.invoke(instance);
}
return null;
}catch(Exception e) {
throw new ProtocolException(e.getMessage(),e);
}
}
}