All Downloads are FREE. Search and download functionalities are using the official Maven repository.

macros.asyncclientclass.ClientMethodForUnsupportedOperation.ftl Maven / Gradle / Ivy

<#macro content operation>

@Override
<#if operation.deprecated>
  @Deprecated

public ${operation.asyncFutureType} ${operation.methodName}Async(
        ${operation.input.variableType} request) {

    return ${operation.methodName}Async(request, null);
}

@Override
<#if operation.deprecated>
  @Deprecated

public ${operation.asyncFutureType} ${operation.methodName}Async(
        ${operation.input.variableType} request,
        ${operation.asyncHandlerType} asyncHandler) {

    throw new java.lang.UnsupportedOperationException();
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy