/* * Copyright 2018-2023 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.entityresolution; import javax.annotation.Generated; import com.amazonaws.services.entityresolution.model.*; /** * Abstract implementation of {@code AWSEntityResolutionAsync}. 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 AbstractAWSEntityResolutionAsync extends AbstractAWSEntityResolution implements AWSEntityResolutionAsync { protected AbstractAWSEntityResolutionAsync() { } @Override public java.util.concurrent.Future createMatchingWorkflowAsync(CreateMatchingWorkflowRequest request) { return createMatchingWorkflowAsync(request, null); } @Override public java.util.concurrent.Future createMatchingWorkflowAsync(CreateMatchingWorkflowRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future createSchemaMappingAsync(CreateSchemaMappingRequest request) { return createSchemaMappingAsync(request, null); } @Override public java.util.concurrent.Future createSchemaMappingAsync(CreateSchemaMappingRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future deleteMatchingWorkflowAsync(DeleteMatchingWorkflowRequest request) { return deleteMatchingWorkflowAsync(request, null); } @Override public java.util.concurrent.Future deleteMatchingWorkflowAsync(DeleteMatchingWorkflowRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future deleteSchemaMappingAsync(DeleteSchemaMappingRequest request) { return deleteSchemaMappingAsync(request, null); } @Override public java.util.concurrent.Future deleteSchemaMappingAsync(DeleteSchemaMappingRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future getMatchIdAsync(GetMatchIdRequest request) { return getMatchIdAsync(request, null); } @Override public java.util.concurrent.Future getMatchIdAsync(GetMatchIdRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future getMatchingJobAsync(GetMatchingJobRequest request) { return getMatchingJobAsync(request, null); } @Override public java.util.concurrent.Future getMatchingJobAsync(GetMatchingJobRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future getMatchingWorkflowAsync(GetMatchingWorkflowRequest request) { return getMatchingWorkflowAsync(request, null); } @Override public java.util.concurrent.Future getMatchingWorkflowAsync(GetMatchingWorkflowRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future getSchemaMappingAsync(GetSchemaMappingRequest request) { return getSchemaMappingAsync(request, null); } @Override public java.util.concurrent.Future getSchemaMappingAsync(GetSchemaMappingRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future listMatchingJobsAsync(ListMatchingJobsRequest request) { return listMatchingJobsAsync(request, null); } @Override public java.util.concurrent.Future listMatchingJobsAsync(ListMatchingJobsRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future listMatchingWorkflowsAsync(ListMatchingWorkflowsRequest request) { return listMatchingWorkflowsAsync(request, null); } @Override public java.util.concurrent.Future listMatchingWorkflowsAsync(ListMatchingWorkflowsRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } @Override public java.util.concurrent.Future listSchemaMappingsAsync(ListSchemaMappingsRequest request) { return listSchemaMappingsAsync(request, null); } @Override public java.util.concurrent.Future listSchemaMappingsAsync(ListSchemaMappingsRequest 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 startMatchingJobAsync(StartMatchingJobRequest request) { return startMatchingJobAsync(request, null); } @Override public java.util.concurrent.Future startMatchingJobAsync(StartMatchingJobRequest 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 updateMatchingWorkflowAsync(UpdateMatchingWorkflowRequest request) { return updateMatchingWorkflowAsync(request, null); } @Override public java.util.concurrent.Future updateMatchingWorkflowAsync(UpdateMatchingWorkflowRequest request, com.amazonaws.handlers.AsyncHandler asyncHandler) { throw new java.lang.UnsupportedOperationException(); } }