
com.google.ads.googleads.v9.services.LandingPageViewServiceGrpc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v9 Show documentation
Show all versions of google-ads-stubs-v9 Show documentation
Stubs for GAAPI version google-ads-stubs-v9
The newest version!
package com.google.ads.googleads.v9.services;
import static io.grpc.MethodDescriptor.generateFullMethodName;
/**
*
* Service to fetch landing page views.
*
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler",
comments = "Source: google/ads/googleads/v9/services/landing_page_view_service.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class LandingPageViewServiceGrpc {
private LandingPageViewServiceGrpc() {}
public static final String SERVICE_NAME = "google.ads.googleads.v9.services.LandingPageViewService";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getGetLandingPageViewMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "GetLandingPageView",
requestType = com.google.ads.googleads.v9.services.GetLandingPageViewRequest.class,
responseType = com.google.ads.googleads.v9.resources.LandingPageView.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor getGetLandingPageViewMethod() {
io.grpc.MethodDescriptor getGetLandingPageViewMethod;
if ((getGetLandingPageViewMethod = LandingPageViewServiceGrpc.getGetLandingPageViewMethod) == null) {
synchronized (LandingPageViewServiceGrpc.class) {
if ((getGetLandingPageViewMethod = LandingPageViewServiceGrpc.getGetLandingPageViewMethod) == null) {
LandingPageViewServiceGrpc.getGetLandingPageViewMethod = getGetLandingPageViewMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "GetLandingPageView"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.ads.googleads.v9.services.GetLandingPageViewRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.ads.googleads.v9.resources.LandingPageView.getDefaultInstance()))
.setSchemaDescriptor(new LandingPageViewServiceMethodDescriptorSupplier("GetLandingPageView"))
.build();
}
}
}
return getGetLandingPageViewMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static LandingPageViewServiceStub newStub(io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public LandingPageViewServiceStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new LandingPageViewServiceStub(channel, callOptions);
}
};
return LandingPageViewServiceStub.newStub(factory, channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static LandingPageViewServiceBlockingStub newBlockingStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public LandingPageViewServiceBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new LandingPageViewServiceBlockingStub(channel, callOptions);
}
};
return LandingPageViewServiceBlockingStub.newStub(factory, channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static LandingPageViewServiceFutureStub newFutureStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public LandingPageViewServiceFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new LandingPageViewServiceFutureStub(channel, callOptions);
}
};
return LandingPageViewServiceFutureStub.newStub(factory, channel);
}
/**
*
* Service to fetch landing page views.
*
*/
public static abstract class LandingPageViewServiceImplBase implements io.grpc.BindableService {
/**
*
* Returns the requested landing page view in full detail.
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
*/
public void getLandingPageView(com.google.ads.googleads.v9.services.GetLandingPageViewRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getGetLandingPageViewMethod(), responseObserver);
}
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getGetLandingPageViewMethod(),
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.google.ads.googleads.v9.services.GetLandingPageViewRequest,
com.google.ads.googleads.v9.resources.LandingPageView>(
this, METHODID_GET_LANDING_PAGE_VIEW)))
.build();
}
}
/**
*
* Service to fetch landing page views.
*
*/
public static final class LandingPageViewServiceStub extends io.grpc.stub.AbstractAsyncStub {
private LandingPageViewServiceStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected LandingPageViewServiceStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new LandingPageViewServiceStub(channel, callOptions);
}
/**
*
* Returns the requested landing page view in full detail.
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
*/
public void getLandingPageView(com.google.ads.googleads.v9.services.GetLandingPageViewRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getGetLandingPageViewMethod(), getCallOptions()), request, responseObserver);
}
}
/**
*
* Service to fetch landing page views.
*
*/
public static final class LandingPageViewServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub {
private LandingPageViewServiceBlockingStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected LandingPageViewServiceBlockingStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new LandingPageViewServiceBlockingStub(channel, callOptions);
}
/**
*
* Returns the requested landing page view in full detail.
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
*/
public com.google.ads.googleads.v9.resources.LandingPageView getLandingPageView(com.google.ads.googleads.v9.services.GetLandingPageViewRequest request) {
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getGetLandingPageViewMethod(), getCallOptions(), request);
}
}
/**
*
* Service to fetch landing page views.
*
*/
public static final class LandingPageViewServiceFutureStub extends io.grpc.stub.AbstractFutureStub {
private LandingPageViewServiceFutureStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected LandingPageViewServiceFutureStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new LandingPageViewServiceFutureStub(channel, callOptions);
}
/**
*
* Returns the requested landing page view in full detail.
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
*/
public com.google.common.util.concurrent.ListenableFuture getLandingPageView(
com.google.ads.googleads.v9.services.GetLandingPageViewRequest request) {
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getGetLandingPageViewMethod(), getCallOptions()), request);
}
}
private static final int METHODID_GET_LANDING_PAGE_VIEW = 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 LandingPageViewServiceImplBase serviceImpl;
private final int methodId;
MethodHandlers(LandingPageViewServiceImplBase 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_GET_LANDING_PAGE_VIEW:
serviceImpl.getLandingPageView((com.google.ads.googleads.v9.services.GetLandingPageViewRequest) 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 LandingPageViewServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
LandingPageViewServiceBaseDescriptorSupplier() {}
@java.lang.Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return com.google.ads.googleads.v9.services.LandingPageViewServiceProto.getDescriptor();
}
@java.lang.Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("LandingPageViewService");
}
}
private static final class LandingPageViewServiceFileDescriptorSupplier
extends LandingPageViewServiceBaseDescriptorSupplier {
LandingPageViewServiceFileDescriptorSupplier() {}
}
private static final class LandingPageViewServiceMethodDescriptorSupplier
extends LandingPageViewServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final String methodName;
LandingPageViewServiceMethodDescriptorSupplier(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 (LandingPageViewServiceGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new LandingPageViewServiceFileDescriptorSupplier())
.addMethod(getGetLandingPageViewMethod())
.build();
}
}
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy