Embarcadero incrustado con certificados de cliente

Quiero crear un servidor https incorporado que requiera que los clientes presenten un certificado y estoy usando esto:http://www.smartjava.org/content/embedded-jetty-client-certificates

Ahora mi pregunta es cómo puedo proporcionar el archivo de almacén de claves y el almacén de confianza para mi código dado que mi embarcadero está reparado. Me refiero a estas líneas en el código:

// the keystore (with one key) we'll use to make the connection with the
    // broker
    private final static String KEYSTORE_LOCATION = "src/main/resources/client_keystore.jks";
    private final static String KEYSTORE_PASS = "secret";

    // the truststore we use for our server. This keystore should contain all the keys
    // that are allowed to make a connection to the server
    private final static String TRUSTSTORE_LOCATION = "src/main/resources/truststore.jks";
    private final static String TRUSTSTORE_PASS = "secret";

Gracias

Respuestas a la pregunta(1)

Su respuesta a la pregunta