com.amazon.ask.localdebug.util.ClientConfigurationBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ask-sdk-local-debug Show documentation
Show all versions of ask-sdk-local-debug Show documentation
Enables local debugging support for skills.
/*
Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"). You may not use
this file except in compliance with the License. A copy of the License is located at
http://aws.amazon.com/apache2.0/
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
the specific language governing permissions and limitations under the License.
*/
package com.amazon.ask.localdebug.util;
import com.amazon.ask.localdebug.config.ClientConfiguration;
import com.amazon.ask.localdebug.constants.Constants;
import java.util.Arrays;
import java.util.List;
/**
* Utility class to build client configuration instance {@link ClientConfiguration}
* from user provided arguments.
*/
public final class ClientConfigurationBuilder {
/**
* Private constructor.
*/
private ClientConfigurationBuilder() {
}
// Configuration names
/**
* Builds {@link ClientConfiguration} instance.
* @param arguments - User provided arguments.
* @return {@link ClientConfiguration}.
*/
public static ClientConfiguration buildClientConfiguration(final String[] arguments) {
List argumentList = Arrays.asList(arguments);
return ClientConfiguration.builder()
.withSkillId(ArgumentParserUtils.getArgumentValue(Constants.SKILL_ID_ARG_NAME, argumentList).toString())
.withSkillInvokerClassName(ArgumentParserUtils
.getArgumentValue(Constants.SKILL_ENTRY_CLASS_ARG_NAME, argumentList).toString())
.withAccessToken(ArgumentParserUtils.getArgumentValue(Constants.ACCESS_TOKEN, argumentList).toString())
.withThreadPoolSize(Integer.parseInt(ArgumentParserUtils
.getArgumentValue(Constants.THREAD_POOL_SIZE, argumentList, false, 0)
.toString()))
.withRegion(ArgumentParserUtils
.getArgumentValue(Constants.REGION, argumentList, false, Constants.DEFAULT_REGION)
.toString())
.build();
}
}