Mercurial > dive4elements > river
view flys-client/src/main/java/de/intevation/flys/client/server/GGInATrustStrategy.java @ 4866:acfd48384835
Changed data field names in fix analsis to ld_from, ld_to, ld step.
* Changed names in state model.
* Changed data fields in artifact.
* Use RangeAccess to get location/distance data.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 25 Jan 2013 11:53:04 +0100 |
parents | abf267708672 |
children |
line wrap: on
line source
package de.intevation.flys.client.server; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; import org.apache.http.conn.ssl.TrustStrategy; public class GGInATrustStrategy implements TrustStrategy { /** * Tempoary class to accept all certificates for GGinA Authentication */ @Override public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException { // FIXME validate Certificate return true; } }