@@ -48,6 +48,7 @@ public final class LocationSearchSample {
48
48
private static CloudTalentSolution talentSolutionClient =
49
49
JobServiceQuickstart .getTalentSolutionClient ();
50
50
51
+ // [START job_basic_location_search]
51
52
// [START basic_location_search]
52
53
53
54
/** Basic location Search */
@@ -80,7 +81,9 @@ public static void basicLocationSearch(String companyName, String location, doub
80
81
81
82
}
82
83
// [END basic_location_search]
84
+ // [END job_basic_location_search]
83
85
86
+ // [START job_keyword_location_search]
84
87
// [START keyword_location_search]
85
88
86
89
/** Keyword location Search */
@@ -114,7 +117,9 @@ public static void keywordLocationSearch(
114
117
System .out .printf ("Keyword location search results: %s" , response );
115
118
}
116
119
// [END keyword_location_search]
120
+ // [END job_keyword_location_search]
117
121
122
+ // [START job_city_location_search]
118
123
// [START city_location_search]
119
124
120
125
/** City location Search */
@@ -145,7 +150,9 @@ public static void cityLocationSearch(String companyName, String location)
145
150
System .out .printf ("City locations search results: %s" , response );
146
151
}
147
152
// [END city_location_search]
153
+ // [END job_city_location_search]
148
154
155
+ // [START job_multi_locations_search]
149
156
// [START multi_locations_search]
150
157
151
158
/** Multiple locations Search */
@@ -181,8 +188,10 @@ public static void multiLocationsSearch(
181
188
System .out .printf ("Multiple locations search results: %s" , response );
182
189
183
190
}
191
+ // [END job_multi_locations_search]
184
192
// [END multi_locations_search]
185
193
194
+ // [START job_broadening_location_search]
186
195
// [START broadening_location_search]
187
196
188
197
/** Broadening location Search */
@@ -214,6 +223,7 @@ public static void broadeningLocationsSearch(String companyName, String location
214
223
System .out .printf ("Broadening locations search results: %s" , response );
215
224
}
216
225
// [END broadening_location_search]
226
+ // [END job_broadening_location_search]
217
227
218
228
public static void main (String ... args ) throws Exception {
219
229
String location = args .length >= 1 ? args [0 ] : "Mountain View, CA" ;
0 commit comments