Package com.amazonaws.hal.client

Examples of com.amazonaws.hal.client.HalClient


    // Methods - Private
    //-------------------------------------------------------------

    private HalClient getHalClient() {
        if (halClient == null) {
            this.halClient = new HalClient(clientConfiguration == null ? new ClientConfiguration() : clientConfiguration,
                                           endpoint,
                                           serviceName,
                                           awsCredentialsProvider == null ? new DefaultAWSCredentialsProviderChain() : awsCredentialsProvider,
                                           resourceCache == null ? ImmediatelyExpiringCache.getInstance() : resourceCache);
        }
View Full Code Here


    // Methods - Private
    //-------------------------------------------------------------

    private HalClient getHalClient() {
        if (halClient == null) {
            this.halClient = new HalClient(clientConfiguration == null ? new ClientConfiguration() : clientConfiguration,
                                           endpoint,
                                           awsCredentialsProvider == null ? new DefaultAWSCredentialsProviderChain() : awsCredentialsProvider,
                                           signer == null ? new AWS4Signer() : signer,
                                           resourceCache == null ? ImmediatelyExpiringCache.getInstance() : resourceCache);
        }
View Full Code Here

    // Methods - Private
    //-------------------------------------------------------------

    private HalClient getHalClient() {
        if (halClient == null) {
            this.halClient = new HalClient(clientConfiguration == null ? new ClientConfiguration() : clientConfiguration,
                                           endpoint,
                                           serviceName,
                                           regionId,
                                           awsCredentialsProvider == null ? new DefaultAWSCredentialsProviderChain() : awsCredentialsProvider,
                                           resourceCache == null ? ImmediatelyExpiringCache.getInstance() : resourceCache);
View Full Code Here

TOP

Related Classes of com.amazonaws.hal.client.HalClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.