< prev index next >

test/sun/security/krb5/name/Constructors.java

Print this page




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 /*
  24  * @test
  25  * @bug 6966259
  26  * @summary Make PrincipalName and Realm immutable

  27  * @run main/othervm Constructors
  28  */
  29 
  30 import java.util.Arrays;
  31 import sun.security.krb5.*;
  32 
  33 public class Constructors {
  34     public static void main(String[] args) throws Exception {
  35 
  36         int type;
  37         boolean testNoDefaultDomain;
  38 
  39         // Part 1: on format
  40 
  41         // Good ones
  42         type = PrincipalName.KRB_NT_UNKNOWN;
  43         checkName("a", type, "R", "R", "a");
  44         checkName("a@R2", type, "R", "R", "a");
  45         checkName("a/b", type, "R", "R", "a", "b");
  46         checkName("a/b@R2", type, "R", "R", "a", "b");




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 /*
  24  * @test
  25  * @bug 6966259
  26  * @summary Make PrincipalName and Realm immutable
  27  * @modules java.security.jgss/sun.security.krb5
  28  * @run main/othervm Constructors
  29  */
  30 
  31 import java.util.Arrays;
  32 import sun.security.krb5.*;
  33 
  34 public class Constructors {
  35     public static void main(String[] args) throws Exception {
  36 
  37         int type;
  38         boolean testNoDefaultDomain;
  39 
  40         // Part 1: on format
  41 
  42         // Good ones
  43         type = PrincipalName.KRB_NT_UNKNOWN;
  44         checkName("a", type, "R", "R", "a");
  45         checkName("a@R2", type, "R", "R", "a");
  46         checkName("a/b", type, "R", "R", "a", "b");
  47         checkName("a/b@R2", type, "R", "R", "a", "b");


< prev index next >