jdk/src/share/classes/com/sun/security/jgss/AuthorizationDataEntry.java
changeset 5457 d2782f1ecc9f
parent 3483 a16fce1820ef
child 5506 202f599c92aa
equal deleted inserted replaced
5456:40ff273941a2 5457:d2782f1ecc9f
     1 /*
     1 /*
     2  * Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved.
     2  * Copyright 2009-2010 Sun Microsystems, Inc.  All Rights Reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Sun designates this
     7  * published by the Free Software Foundation.  Sun designates this
    61     }
    61     }
    62 
    62 
    63     public String toString() {
    63     public String toString() {
    64         return "AuthorizationDataEntry: type="+type+", data=" +
    64         return "AuthorizationDataEntry: type="+type+", data=" +
    65                 data.length + " bytes:\n" +
    65                 data.length + " bytes:\n" +
    66                 new sun.misc.HexDumpEncoder().encode(data);
    66                 new sun.misc.HexDumpEncoder().encodeBuffer(data);
    67     }
    67     }
    68 }
    68 }