jdk/src/java.base/share/classes/sun/security/provider/certpath/PolicyNodeImpl.java
changeset 26967 c182469301ee
parent 25859 3317bb8137f4
equal deleted inserted replaced
26966:580934a3052b 26967:c182469301ee
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2014, Oracle and/or its affiliates. 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.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    54 
    54 
    55     // every node has one parent, and zero or more children
    55     // every node has one parent, and zero or more children
    56     private PolicyNodeImpl mParent;
    56     private PolicyNodeImpl mParent;
    57     private HashSet<PolicyNodeImpl> mChildren;
    57     private HashSet<PolicyNodeImpl> mChildren;
    58 
    58 
    59     // the 4 fields specified by RFC 3280
    59     // the 4 fields specified by RFC 5280
    60     private String mValidPolicy;
    60     private String mValidPolicy;
    61     private HashSet<PolicyQualifierInfo> mQualifierSet;
    61     private HashSet<PolicyQualifierInfo> mQualifierSet;
    62     private boolean mCriticalityIndicator;
    62     private boolean mCriticalityIndicator;
    63     private HashSet<String> mExpectedPolicySet;
    63     private HashSet<String> mExpectedPolicySet;
    64     private boolean mOriginalExpectedPolicySet;
    64     private boolean mOriginalExpectedPolicySet;