diff options
| author | bschnalzer <bianca.schnalzer@egiz.gv.at> | 2017-08-09 13:56:12 +0200 | 
|---|---|---|
| committer | bschnalzer <bianca.schnalzer@egiz.gv.at> | 2017-08-09 13:56:14 +0200 | 
| commit | 7fe464cc98d714179b907c142bdd2fabfd009aa3 (patch) | |
| tree | 328c53a9b60dfa1106c6b9d930d75ab127dce33f /pdf-as-web/src/main/java/at | |
| parent | 17be060a4d2d79ee75036a2f785d4a4913f7935f (diff) | |
| download | pdf-as-4-7fe464cc98d714179b907c142bdd2fabfd009aa3.tar.gz pdf-as-4-7fe464cc98d714179b907c142bdd2fabfd009aa3.tar.bz2 pdf-as-4-7fe464cc98d714179b907c142bdd2fabfd009aa3.zip | |
Fixed problem with PAdES Signatures, removed some attributes from CAdES signatures which are not required, minor bug fixes, implemented new style (lineCenter)4.1.1-RC
Diffstat (limited to 'pdf-as-web/src/main/java/at')
| -rw-r--r-- | pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java | 26 | 
1 files changed, 25 insertions, 1 deletions
| diff --git a/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java b/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java index cdd66a1d..9b14df16 100644 --- a/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java +++ b/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java @@ -220,6 +220,20 @@ public class WebConfiguration implements IConfigurationConstants {  		return null;  	} +	public static String getOnlineBKUURL() { +		if(getOnlineBKUEnabled()) { +			String overwrite = properties.getProperty(MOC_SIGN_URL); +			if(overwrite == null) { +				overwrite = properties.getProperty(ONLINE_BKU_URL); +				if(overwrite == null) { +					overwrite = PdfAsHelper.getPdfAsConfig().getValue(MOC_SIGN_URL); +				} +			} +			return overwrite; +		} +		return null; +	} +  	public static String getHandyBKUURL() {  		if(getMobileBKUEnabled()) {  			String overwrite = properties.getProperty(MOBILE_SIGN_URL); @@ -422,7 +436,17 @@ public class WebConfiguration implements IConfigurationConstants {  		}  		return false;  	} -	 + +	public static boolean getOnlineBKUEnabled() { +		String value = properties.getProperty(ONLINE_BKU_ENABLED); +		if (value != null) { +			if (value.equals("true")) { +				return true; +			} +		} +		return false; +	} +  	public static boolean getSoapSignEnabled() {  		String value = properties.getProperty(SOAP_SIGN_ENABLED);  		if (value != null) { | 
