com.google.maps.fleetengine.v1.stub.VehicleServiceStub Maven / Gradle / Ivy
Show all versions of google-maps-fleetengine Show documentation
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.google.maps.fleetengine.v1.stub;
import static com.google.maps.fleetengine.v1.VehicleServiceClient.ListVehiclesPagedResponse;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.maps.fleetengine.v1.CreateVehicleRequest;
import com.google.maps.fleetengine.v1.GetVehicleRequest;
import com.google.maps.fleetengine.v1.ListVehiclesRequest;
import com.google.maps.fleetengine.v1.ListVehiclesResponse;
import com.google.maps.fleetengine.v1.SearchVehiclesRequest;
import com.google.maps.fleetengine.v1.SearchVehiclesResponse;
import com.google.maps.fleetengine.v1.UpdateVehicleAttributesRequest;
import com.google.maps.fleetengine.v1.UpdateVehicleAttributesResponse;
import com.google.maps.fleetengine.v1.UpdateVehicleRequest;
import com.google.maps.fleetengine.v1.Vehicle;
import javax.annotation.Generated;
// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Base stub class for the VehicleService service API.
*
* This class is for advanced usage and reflects the underlying API directly.
*/
@Generated("by gapic-generator-java")
public abstract class VehicleServiceStub implements BackgroundResource {
public UnaryCallable createVehicleCallable() {
throw new UnsupportedOperationException("Not implemented: createVehicleCallable()");
}
public UnaryCallable getVehicleCallable() {
throw new UnsupportedOperationException("Not implemented: getVehicleCallable()");
}
public UnaryCallable updateVehicleCallable() {
throw new UnsupportedOperationException("Not implemented: updateVehicleCallable()");
}
public UnaryCallable
updateVehicleAttributesCallable() {
throw new UnsupportedOperationException("Not implemented: updateVehicleAttributesCallable()");
}
public UnaryCallable listVehiclesPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listVehiclesPagedCallable()");
}
public UnaryCallable listVehiclesCallable() {
throw new UnsupportedOperationException("Not implemented: listVehiclesCallable()");
}
public UnaryCallable searchVehiclesCallable() {
throw new UnsupportedOperationException("Not implemented: searchVehiclesCallable()");
}
@Override
public abstract void close();
}