com.google.ads.googleads.v10.services.AdParameterServiceGrpc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v10 Show documentation
Show all versions of google-ads-stubs-v10 Show documentation
Stubs for GAAPI version google-ads-stubs-v10
The newest version!
package com.google.ads.googleads.v10.services;
import static io.grpc.MethodDescriptor.generateFullMethodName;
/**
*
* Service to manage ad parameters.
*
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler",
comments = "Source: google/ads/googleads/v10/services/ad_parameter_service.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class AdParameterServiceGrpc {
private AdParameterServiceGrpc() {}
public static final String SERVICE_NAME = "google.ads.googleads.v10.services.AdParameterService";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getMutateAdParametersMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "MutateAdParameters",
requestType = com.google.ads.googleads.v10.services.MutateAdParametersRequest.class,
responseType = com.google.ads.googleads.v10.services.MutateAdParametersResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor getMutateAdParametersMethod() {
io.grpc.MethodDescriptor getMutateAdParametersMethod;
if ((getMutateAdParametersMethod = AdParameterServiceGrpc.getMutateAdParametersMethod) == null) {
synchronized (AdParameterServiceGrpc.class) {
if ((getMutateAdParametersMethod = AdParameterServiceGrpc.getMutateAdParametersMethod) == null) {
AdParameterServiceGrpc.getMutateAdParametersMethod = getMutateAdParametersMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "MutateAdParameters"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.ads.googleads.v10.services.MutateAdParametersRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.ads.googleads.v10.services.MutateAdParametersResponse.getDefaultInstance()))
.setSchemaDescriptor(new AdParameterServiceMethodDescriptorSupplier("MutateAdParameters"))
.build();
}
}
}
return getMutateAdParametersMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static AdParameterServiceStub newStub(io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public AdParameterServiceStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AdParameterServiceStub(channel, callOptions);
}
};
return AdParameterServiceStub.newStub(factory, channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static AdParameterServiceBlockingStub newBlockingStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public AdParameterServiceBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AdParameterServiceBlockingStub(channel, callOptions);
}
};
return AdParameterServiceBlockingStub.newStub(factory, channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static AdParameterServiceFutureStub newFutureStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public AdParameterServiceFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AdParameterServiceFutureStub(channel, callOptions);
}
};
return AdParameterServiceFutureStub.newStub(factory, channel);
}
/**
*
* Service to manage ad parameters.
*
*/
public static abstract class AdParameterServiceImplBase implements io.grpc.BindableService {
/**
*
* Creates, updates, or removes ad parameters. Operation statuses are
* returned.
* List of thrown errors:
* [AdParameterError]()
* [AuthenticationError]()
* [AuthorizationError]()
* [ContextError]()
* [DatabaseError]()
* [FieldError]()
* [FieldMaskError]()
* [HeaderError]()
* [InternalError]()
* [MutateError]()
* [QuotaError]()
* [RequestError]()
*
*/
public void mutateAdParameters(com.google.ads.googleads.v10.services.MutateAdParametersRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getMutateAdParametersMethod(), responseObserver);
}
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getMutateAdParametersMethod(),
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.ads.googleads.v10.services.MutateAdParametersRequest,
com.google.ads.googleads.v10.services.MutateAdParametersResponse>(
this, METHODID_MUTATE_AD_PARAMETERS)))
.build();
}
}
/**
*
* Service to manage ad parameters.
*
*/
public static final class AdParameterServiceStub extends io.grpc.stub.AbstractAsyncStub {
private AdParameterServiceStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected AdParameterServiceStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AdParameterServiceStub(channel, callOptions);
}
/**
*
* Creates, updates, or removes ad parameters. Operation statuses are
* returned.
* List of thrown errors:
* [AdParameterError]()
* [AuthenticationError]()
* [AuthorizationError]()
* [ContextError]()
* [DatabaseError]()
* [FieldError]()
* [FieldMaskError]()
* [HeaderError]()
* [InternalError]()
* [MutateError]()
* [QuotaError]()
* [RequestError]()
*
*/
public void mutateAdParameters(com.google.ads.googleads.v10.services.MutateAdParametersRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getMutateAdParametersMethod(), getCallOptions()), request, responseObserver);
}
}
/**
*
* Service to manage ad parameters.
*
*/
public static final class AdParameterServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub {
private AdParameterServiceBlockingStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected AdParameterServiceBlockingStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AdParameterServiceBlockingStub(channel, callOptions);
}
/**
*
* Creates, updates, or removes ad parameters. Operation statuses are
* returned.
* List of thrown errors:
* [AdParameterError]()
* [AuthenticationError]()
* [AuthorizationError]()
* [ContextError]()
* [DatabaseError]()
* [FieldError]()
* [FieldMaskError]()
* [HeaderError]()
* [InternalError]()
* [MutateError]()
* [QuotaError]()
* [RequestError]()
*
*/
public com.google.ads.googleads.v10.services.MutateAdParametersResponse mutateAdParameters(com.google.ads.googleads.v10.services.MutateAdParametersRequest request) {
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getMutateAdParametersMethod(), getCallOptions(), request);
}
}
/**
*
* Service to manage ad parameters.
*
*/
public static final class AdParameterServiceFutureStub extends io.grpc.stub.AbstractFutureStub {
private AdParameterServiceFutureStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected AdParameterServiceFutureStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new AdParameterServiceFutureStub(channel, callOptions);
}
/**
*
* Creates, updates, or removes ad parameters. Operation statuses are
* returned.
* List of thrown errors:
* [AdParameterError]()
* [AuthenticationError]()
* [AuthorizationError]()
* [ContextError]()
* [DatabaseError]()
* [FieldError]()
* [FieldMaskError]()
* [HeaderError]()
* [InternalError]()
* [MutateError]()
* [QuotaError]()
* [RequestError]()
*
*/
public com.google.common.util.concurrent.ListenableFuture mutateAdParameters(
com.google.ads.googleads.v10.services.MutateAdParametersRequest request) {
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getMutateAdParametersMethod(), getCallOptions()), request);
}
}
private static final int METHODID_MUTATE_AD_PARAMETERS = 0;
private static final class MethodHandlers implements
io.grpc.stub.ServerCalls.UnaryMethod,
io.grpc.stub.ServerCalls.ServerStreamingMethod,
io.grpc.stub.ServerCalls.ClientStreamingMethod,
io.grpc.stub.ServerCalls.BidiStreamingMethod {
private final AdParameterServiceImplBase serviceImpl;
private final int methodId;
MethodHandlers(AdParameterServiceImplBase serviceImpl, int methodId) {
this.serviceImpl = serviceImpl;
this.methodId = methodId;
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public void invoke(Req request, io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
case METHODID_MUTATE_AD_PARAMETERS:
serviceImpl.mutateAdParameters((com.google.ads.googleads.v10.services.MutateAdParametersRequest) request,
(io.grpc.stub.StreamObserver) responseObserver);
break;
default:
throw new AssertionError();
}
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public io.grpc.stub.StreamObserver invoke(
io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
default:
throw new AssertionError();
}
}
}
private static abstract class AdParameterServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
AdParameterServiceBaseDescriptorSupplier() {}
@java.lang.Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return com.google.ads.googleads.v10.services.AdParameterServiceProto.getDescriptor();
}
@java.lang.Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("AdParameterService");
}
}
private static final class AdParameterServiceFileDescriptorSupplier
extends AdParameterServiceBaseDescriptorSupplier {
AdParameterServiceFileDescriptorSupplier() {}
}
private static final class AdParameterServiceMethodDescriptorSupplier
extends AdParameterServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final String methodName;
AdParameterServiceMethodDescriptorSupplier(String methodName) {
this.methodName = methodName;
}
@java.lang.Override
public com.google.protobuf.Descriptors.MethodDescriptor getMethodDescriptor() {
return getServiceDescriptor().findMethodByName(methodName);
}
}
private static volatile io.grpc.ServiceDescriptor serviceDescriptor;
public static io.grpc.ServiceDescriptor getServiceDescriptor() {
io.grpc.ServiceDescriptor result = serviceDescriptor;
if (result == null) {
synchronized (AdParameterServiceGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new AdParameterServiceFileDescriptorSupplier())
.addMethod(getMutateAdParametersMethod())
.build();
}
}
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy