HADOOP-13538. Deprecate getInstance and initialize methods with Path in TrashPolicy. Contributed by Yiqun Lin.
This commit is contained in:
parent
c37346d0e3
commit
092b4d5bfd
@ -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 Path getCurrentTrashDir(Path path) throws IOException {
|
||||
* @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 @@ private TrashPolicyDefault(FileSystem fs, Configuration conf)
|
||||
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
Block a user