com.amazonaws.services.fis.AbstractAWSFISAsync Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-fis Show documentation
Show all versions of aws-java-sdk-fis Show documentation
The AWS Java SDK for AWS Fault Injection Simulator module holds the client classes that are used for communicating with AWS Fault Injection Simulator Service
/*
* Copyright 2016-2021 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.amazonaws.services.fis;
import javax.annotation.Generated;
import com.amazonaws.services.fis.model.*;
/**
* Abstract implementation of {@code AWSFISAsync}. Convenient method forms pass through to the corresponding overload
* that takes a request object and an {@code AsyncHandler}, which throws an {@code UnsupportedOperationException}.
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AbstractAWSFISAsync extends AbstractAWSFIS implements AWSFISAsync {
protected AbstractAWSFISAsync() {
}
@Override
public java.util.concurrent.Future createExperimentTemplateAsync(CreateExperimentTemplateRequest request) {
return createExperimentTemplateAsync(request, null);
}
@Override
public java.util.concurrent.Future createExperimentTemplateAsync(CreateExperimentTemplateRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future deleteExperimentTemplateAsync(DeleteExperimentTemplateRequest request) {
return deleteExperimentTemplateAsync(request, null);
}
@Override
public java.util.concurrent.Future deleteExperimentTemplateAsync(DeleteExperimentTemplateRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future getActionAsync(GetActionRequest request) {
return getActionAsync(request, null);
}
@Override
public java.util.concurrent.Future getActionAsync(GetActionRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future getExperimentAsync(GetExperimentRequest request) {
return getExperimentAsync(request, null);
}
@Override
public java.util.concurrent.Future getExperimentAsync(GetExperimentRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future getExperimentTemplateAsync(GetExperimentTemplateRequest request) {
return getExperimentTemplateAsync(request, null);
}
@Override
public java.util.concurrent.Future getExperimentTemplateAsync(GetExperimentTemplateRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future listActionsAsync(ListActionsRequest request) {
return listActionsAsync(request, null);
}
@Override
public java.util.concurrent.Future listActionsAsync(ListActionsRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future listExperimentTemplatesAsync(ListExperimentTemplatesRequest request) {
return listExperimentTemplatesAsync(request, null);
}
@Override
public java.util.concurrent.Future listExperimentTemplatesAsync(ListExperimentTemplatesRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future listExperimentsAsync(ListExperimentsRequest request) {
return listExperimentsAsync(request, null);
}
@Override
public java.util.concurrent.Future listExperimentsAsync(ListExperimentsRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future listTagsForResourceAsync(ListTagsForResourceRequest request) {
return listTagsForResourceAsync(request, null);
}
@Override
public java.util.concurrent.Future listTagsForResourceAsync(ListTagsForResourceRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future startExperimentAsync(StartExperimentRequest request) {
return startExperimentAsync(request, null);
}
@Override
public java.util.concurrent.Future startExperimentAsync(StartExperimentRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future stopExperimentAsync(StopExperimentRequest request) {
return stopExperimentAsync(request, null);
}
@Override
public java.util.concurrent.Future stopExperimentAsync(StopExperimentRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future tagResourceAsync(TagResourceRequest request) {
return tagResourceAsync(request, null);
}
@Override
public java.util.concurrent.Future tagResourceAsync(TagResourceRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future untagResourceAsync(UntagResourceRequest request) {
return untagResourceAsync(request, null);
}
@Override
public java.util.concurrent.Future untagResourceAsync(UntagResourceRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public java.util.concurrent.Future updateExperimentTemplateAsync(UpdateExperimentTemplateRequest request) {
return updateExperimentTemplateAsync(request, null);
}
@Override
public java.util.concurrent.Future updateExperimentTemplateAsync(UpdateExperimentTemplateRequest request,
com.amazonaws.handlers.AsyncHandler asyncHandler) {
throw new java.lang.UnsupportedOperationException();
}
}