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
client.setOptions(ClientOptions.builder().sslOptions(SslOptions.builder() | |
.keystore(new File("user.p12"), "test12".toCharArray()) | |
.truststore(new File("keystore.jks"), "keystorepassword12") | |
.build()).build()); |
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
import com.google.common.base.Preconditions; | |
import com.graphhopper.storage.DAType; | |
import com.graphhopper.storage.DataAccess; | |
import com.graphhopper.util.NotThreadSafe; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import xerial.larray.LByteArray; | |
import xerial.larray.japi.LArrayJ; | |
import java.io.ByteArrayInputStream; |