Skip to content
Snippets Groups Projects
Commit a4ec176e authored by brinn's avatar brinn
Browse files

add: license header

SVN: 4717
parent c5bbd5db
No related branches found
No related tags found
No related merge requests found
/*
* Copyright 2007 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.datamover;
import java.util.Timer;
......
/*
* Copyright 2007 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.datamover.filesystem;
import java.io.File;
......@@ -34,7 +50,7 @@ final class RetryingPathRemover implements IPathRemover
this.millisToSleepOnFailure = millisToSleepOnFailure;
}
private final Status STATUS_FAILED_DELETION = new Status(StatusFlag.FATAL_ERROR, "Failed to remove path.");
private final static Status STATUS_FAILED_DELETION = new Status(StatusFlag.FATAL_ERROR, "Failed to remove path.");
public Status remove(File path)
{
......
package ch.systemsx.cisd.datamover.filesystem.intf;
import java.util.TimerTask;
/*
* Copyright 2007 ETH Zuerich, CISD
*
......@@ -17,6 +14,10 @@ import java.util.TimerTask;
* limitations under the License.
*/
package ch.systemsx.cisd.datamover.filesystem.intf;
import java.util.TimerTask;
/**
* A factory for creating {@link TimerTask}s that, when run, perform a recovery operation on the data mover.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment