HADOOP-13538. Deprecate getInstance and initialize methods with Path in TrashPolicy. Contributed by Yiqun Lin.
(cherry picked from commit092b4d5bfd
) (cherry picked from commit2321b73037
)
This commit is contained in:
parent
8bc33bf343
commit
f871aed87e
|
@ -42,7 +42,9 @@ public abstract class TrashPolicy extends Configured {
|
|||
* @param conf the configuration to be used
|
||||
* @param fs the filesystem to be used
|
||||
* @param home the home directory
|
||||
* @deprecated Use {@link #initialize(Configuration, FileSystem)} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract void initialize(Configuration conf, FileSystem fs, Path home);
|
||||
|
||||
/**
|
||||
|
@ -116,7 +118,9 @@ public abstract class TrashPolicy extends Configured {
|
|||
* @param fs the file system to be used
|
||||
* @param home the home directory
|
||||
* @return an instance of TrashPolicy
|
||||
* @deprecated Use {@link #getInstance(Configuration, FileSystem)} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public static TrashPolicy getInstance(Configuration conf, FileSystem fs, Path home) {
|
||||
Class<? extends TrashPolicy> trashClass = conf.getClass(
|
||||
"fs.trash.classname", TrashPolicyDefault.class, TrashPolicy.class);
|
||||
|
|
|
@ -75,7 +75,11 @@ public class TrashPolicyDefault extends TrashPolicy {
|
|||
initialize(conf, fs);
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link #initialize(Configuration, FileSystem)} instead.
|
||||
*/
|
||||
@Override
|
||||
@Deprecated
|
||||
public void initialize(Configuration conf, FileSystem fs, Path home) {
|
||||
this.fs = fs;
|
||||
this.deletionInterval = (long)(conf.getFloat(
|
||||
|
|
Loading…
Reference in New Issue