Example usage for com.amazonaws.handlers HandlerChainFactory HandlerChainFactory

List of usage examples for com.amazonaws.handlers HandlerChainFactory HandlerChainFactory

Introduction

In this page you can find the example usage for com.amazonaws.handlers HandlerChainFactory HandlerChainFactory.

Prototype

HandlerChainFactory

Source Link

Usage

From source file:com.ivona.services.tts.IvonaSpeechCloudClient.java

License:Open Source License

private void init() {
    exceptionUnmarshallers = new ArrayList<JsonErrorUnmarshaller>();
    exceptionUnmarshallers.add(new JsonErrorUnmarshaller());

    signer = new AWS4Signer();
    signer.setServiceName(SERVICE_NAME);

    setServiceNameIntern(SERVICE_NAME);//from   ww w.  j  ava  2  s.c o m

    HandlerChainFactory chainFactory = new HandlerChainFactory();
    requestHandler2s.addAll(chainFactory.newRequestHandlerChain("/com.ivona.services/tts/request.handlers"));
    requestHandler2s.addAll(chainFactory.newRequestHandlerChain("/com.ivona.services/tts/request.handler2s"));
}