Jetty incorporado com certificados de cliente

Quero criar um servidor https incorporado que exija que os clientes apresentem um certificado e estou usando isso:http://www.smartjava.org/content/embedded-jetty-client-certificates

Agora, minha pergunta é: como posso fornecer o keystore e o arquivo de armazenamento confiável para o meu código, pois meu jetty está incorporado. Quero dizer estas linhas no 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";

obrigado

questionAnswers(1)

yourAnswerToTheQuestion