Package org.apache.harmony.jndi.internal

Examples of org.apache.harmony.jndi.internal.SortResult


    public static final String OID = "1.2.840.113556.1.4.474";

    public SortResponseControl(String id, boolean criticality, byte[] value)
            throws IOException {
        super(OID, criticality, value);
        SortResult sr;
        sr = (SortResult) ASN1_SORTRESPONSE.decode(value);
        resultCode = sr.getSortresult();
        badAttrId = sr.getAttributeType();
        if (getResultCode() == 0) {
            sorted = true;
        } else {
            sorted = false;
        }
View Full Code Here

TOP

Related Classes of org.apache.harmony.jndi.internal.SortResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.