Previous commit didn't fixup package statements.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/HDFS-1623@1228561 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2012-01-07 03:29:35 +00:00
parent 2d0b340c47
commit fcf1039cdc
7 changed files with 10 additions and 8 deletions

View File

@ -26,3 +26,5 @@ HADOOP-7932. Make client connection retries on socket time outs configurable.
(Uma Maheswara Rao G via todd)
HADOOP-7924. FailoverController for client-based configuration (eli)
HADOOP-7961. Move HA fencing to common. (eli)

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hdfs.server.namenode.ha;
package org.apache.hadoop.ha;
import java.io.IOException;
@ -33,4 +33,4 @@ public BadFencingConfigurationException(String msg) {
public BadFencingConfigurationException(String msg, Throwable cause) {
super(msg, cause);
}
}
}

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hdfs.server.namenode.ha;
package org.apache.hadoop.ha;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
@ -60,4 +60,4 @@ public interface FenceMethod {
* determined to be invalid only at runtime
*/
public boolean tryFence(String args) throws BadFencingConfigurationException;
}
}

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hdfs.server.namenode.ha;
package org.apache.hadoop.ha;
import java.util.List;
import java.util.Map;

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hdfs.server.namenode.ha;
package org.apache.hadoop.ha;
import java.io.IOException;
import java.lang.reflect.Field;

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hdfs.server.namenode.ha;
package org.apache.hadoop.ha;
import java.io.IOException;
import java.net.InetAddress;

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hdfs.server.namenode.ha;
package org.apache.hadoop.ha;
import java.io.BufferedReader;
import java.io.IOException;