@@ -195,9 +195,7 @@ public void get(String resourceName, File destination)
195
195
}
196
196
}
197
197
198
- /**
199
- * @inheritDoc
200
- */
198
+ @ Override
201
199
public List <String > getFileList (String destinationDirectory )
202
200
throws TransferFailedException , ResourceDoesNotExistException {
203
201
String path = keyPrefix + destinationDirectory ;
@@ -226,9 +224,7 @@ public List<String> getFileList(String destinationDirectory)
226
224
return new ArrayList <String >(results );
227
225
}
228
226
229
- /**
230
- * @inheritDoc
231
- */
227
+ @ Override
232
228
public boolean getIfNewer (String resourceName , File destination , long timestamp )
233
229
throws ResourceDoesNotExistException , TransferFailedException {
234
230
ObjectMetadata meta = getRequiredMetadata (resourceName );
@@ -244,9 +240,6 @@ public boolean getIfNewer(String resourceName, File destination, long timestamp)
244
240
return true ;
245
241
}
246
242
247
- /**
248
- * @inheritDoc
249
- */
250
243
@ Override
251
244
public boolean getIfNewerToStream (String resourceName , OutputStream out , long timestamp )
252
245
throws ResourceDoesNotExistException , TransferFailedException {
@@ -287,9 +280,6 @@ private ObjectMetadata getRequiredMetadata(String resourceName)
287
280
}
288
281
}
289
282
290
- /**
291
- * @inheritDoc
292
- */
293
283
@ Override
294
284
protected void openConnectionInternal () throws ConnectionException , AuthenticationException {
295
285
AWSCredentialsProvider credentials = new AWSCredentialsProviderChain (
@@ -334,9 +324,7 @@ protected void openConnectionInternal() throws ConnectionException, Authenticati
334
324
fireSessionDebug ("Key prefix " + keyPrefix );
335
325
}
336
326
337
- /**
338
- * @inheritDoc
339
- */
327
+ @ Override
340
328
public void put (File source , String destination )
341
329
throws TransferFailedException , ResourceDoesNotExistException {
342
330
try (InputStream in = new FileInputStream (source )) {
0 commit comments