6951599: Rename package of security tools for modularization

Move PolicyTool to sun.security.tools.policytool package

Reviewed-by: weijun
This commit is contained in:
Mandy Chung 2010-05-18 13:12:46 -07:00
parent da26b0d878
commit d1dc8092ec
3 changed files with 8 additions and 4 deletions

View File

@ -823,6 +823,10 @@ module jar-tool {
include sun.tools.jar.**;
}
module policytool {
include sun.security.tools.policytool.*;
}
module security-tools {
include sun.security.tools.**;

View File

@ -1,5 +1,5 @@
#
# Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
# Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@ -47,5 +47,5 @@ include $(BUILDDIR)/common/Classes.gmk
build:
$(call make-launcher, keytool, sun.security.tools.KeyTool, , )
$(call make-launcher, policytool, sun.security.tools.PolicyTool, , )
$(call make-launcher, policytool, sun.security.tools.policytool.PolicyTool, , )

View File

@ -1,5 +1,5 @@
/*
* Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -23,7 +23,7 @@
* have any questions.
*/
package sun.security.tools;
package sun.security.tools.policytool;
import java.io.*;
import java.util.LinkedList;