1 /* 2 * Copyright 2022 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.google.cloud.talent.v4.stub; 18 19 import static com.google.cloud.talent.v4.JobServiceClient.ListJobsPagedResponse; 20 21 import com.google.api.gax.core.BackgroundResource; 22 import com.google.api.gax.rpc.OperationCallable; 23 import com.google.api.gax.rpc.UnaryCallable; 24 import com.google.cloud.talent.v4.BatchCreateJobsRequest; 25 import com.google.cloud.talent.v4.BatchCreateJobsResponse; 26 import com.google.cloud.talent.v4.BatchDeleteJobsRequest; 27 import com.google.cloud.talent.v4.BatchDeleteJobsResponse; 28 import com.google.cloud.talent.v4.BatchOperationMetadata; 29 import com.google.cloud.talent.v4.BatchUpdateJobsRequest; 30 import com.google.cloud.talent.v4.BatchUpdateJobsResponse; 31 import com.google.cloud.talent.v4.CreateJobRequest; 32 import com.google.cloud.talent.v4.DeleteJobRequest; 33 import com.google.cloud.talent.v4.GetJobRequest; 34 import com.google.cloud.talent.v4.Job; 35 import com.google.cloud.talent.v4.ListJobsRequest; 36 import com.google.cloud.talent.v4.ListJobsResponse; 37 import com.google.cloud.talent.v4.SearchJobsRequest; 38 import com.google.cloud.talent.v4.SearchJobsResponse; 39 import com.google.cloud.talent.v4.UpdateJobRequest; 40 import com.google.longrunning.Operation; 41 import com.google.longrunning.stub.OperationsStub; 42 import com.google.protobuf.Empty; 43 import javax.annotation.Generated; 44 45 // AUTO-GENERATED DOCUMENTATION AND CLASS. 46 /** 47 * Base stub class for the JobService service API. 48 * 49 * <p>This class is for advanced usage and reflects the underlying API directly. 50 */ 51 @Generated("by gapic-generator-java") 52 public abstract class JobServiceStub implements BackgroundResource { 53 getOperationsStub()54 public OperationsStub getOperationsStub() { 55 return null; 56 } 57 getHttpJsonOperationsStub()58 public com.google.api.gax.httpjson.longrunning.stub.OperationsStub getHttpJsonOperationsStub() { 59 return null; 60 } 61 createJobCallable()62 public UnaryCallable<CreateJobRequest, Job> createJobCallable() { 63 throw new UnsupportedOperationException("Not implemented: createJobCallable()"); 64 } 65 66 public OperationCallable<BatchCreateJobsRequest, BatchCreateJobsResponse, BatchOperationMetadata> batchCreateJobsOperationCallable()67 batchCreateJobsOperationCallable() { 68 throw new UnsupportedOperationException("Not implemented: batchCreateJobsOperationCallable()"); 69 } 70 batchCreateJobsCallable()71 public UnaryCallable<BatchCreateJobsRequest, Operation> batchCreateJobsCallable() { 72 throw new UnsupportedOperationException("Not implemented: batchCreateJobsCallable()"); 73 } 74 getJobCallable()75 public UnaryCallable<GetJobRequest, Job> getJobCallable() { 76 throw new UnsupportedOperationException("Not implemented: getJobCallable()"); 77 } 78 updateJobCallable()79 public UnaryCallable<UpdateJobRequest, Job> updateJobCallable() { 80 throw new UnsupportedOperationException("Not implemented: updateJobCallable()"); 81 } 82 83 public OperationCallable<BatchUpdateJobsRequest, BatchUpdateJobsResponse, BatchOperationMetadata> batchUpdateJobsOperationCallable()84 batchUpdateJobsOperationCallable() { 85 throw new UnsupportedOperationException("Not implemented: batchUpdateJobsOperationCallable()"); 86 } 87 batchUpdateJobsCallable()88 public UnaryCallable<BatchUpdateJobsRequest, Operation> batchUpdateJobsCallable() { 89 throw new UnsupportedOperationException("Not implemented: batchUpdateJobsCallable()"); 90 } 91 deleteJobCallable()92 public UnaryCallable<DeleteJobRequest, Empty> deleteJobCallable() { 93 throw new UnsupportedOperationException("Not implemented: deleteJobCallable()"); 94 } 95 96 public OperationCallable<BatchDeleteJobsRequest, BatchDeleteJobsResponse, BatchOperationMetadata> batchDeleteJobsOperationCallable()97 batchDeleteJobsOperationCallable() { 98 throw new UnsupportedOperationException("Not implemented: batchDeleteJobsOperationCallable()"); 99 } 100 batchDeleteJobsCallable()101 public UnaryCallable<BatchDeleteJobsRequest, Operation> batchDeleteJobsCallable() { 102 throw new UnsupportedOperationException("Not implemented: batchDeleteJobsCallable()"); 103 } 104 listJobsPagedCallable()105 public UnaryCallable<ListJobsRequest, ListJobsPagedResponse> listJobsPagedCallable() { 106 throw new UnsupportedOperationException("Not implemented: listJobsPagedCallable()"); 107 } 108 listJobsCallable()109 public UnaryCallable<ListJobsRequest, ListJobsResponse> listJobsCallable() { 110 throw new UnsupportedOperationException("Not implemented: listJobsCallable()"); 111 } 112 searchJobsCallable()113 public UnaryCallable<SearchJobsRequest, SearchJobsResponse> searchJobsCallable() { 114 throw new UnsupportedOperationException("Not implemented: searchJobsCallable()"); 115 } 116 searchJobsForAlertCallable()117 public UnaryCallable<SearchJobsRequest, SearchJobsResponse> searchJobsForAlertCallable() { 118 throw new UnsupportedOperationException("Not implemented: searchJobsForAlertCallable()"); 119 } 120 121 @Override close()122 public abstract void close(); 123 } 124