Package org.apache.directory.api.ldap.extras.extended.ads_impl.pwdModify

Source Code of org.apache.directory.api.ldap.extras.extended.ads_impl.pwdModify.PasswordModifyRequestDecoder

/*
*  Licensed to the Apache Software Foundation (ASF) under one
*  or more contributor license agreements.  See the NOTICE file
*  distributed with this work for additional information
*  regarding copyright ownership.  The ASF licenses this file
*  to you under the Apache License, Version 2.0 (the
*  "License"); you may not use this file except in compliance
*  with the License.  You may obtain a copy of the License at
*    http://www.apache.org/licenses/LICENSE-2.0
*  Unless required by applicable law or agreed to in writing,
*  software distributed under the License is distributed on an
*  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
*  KIND, either express or implied.  See the License for the
*  specific language governing permissions and limitations
*  under the License.
*/
package org.apache.directory.api.ldap.extras.extended.ads_impl.pwdModify;


import java.nio.ByteBuffer;

import org.apache.directory.api.asn1.Asn1Object;
import org.apache.directory.api.asn1.DecoderException;
import org.apache.directory.api.asn1.ber.Asn1Decoder;
import org.apache.directory.api.ldap.extras.extended.PwdModifyRequest;


/**
*
* A decoder for PasswordModifyRequest.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class PasswordModifyRequestDecoder extends Asn1Decoder
{
    /** The decoder */
    private static final Asn1Decoder decoder = new Asn1Decoder();


    /**
     * Decode a PDU which must contain a PwdModifyRequest extended operation.
     * Note that the stream of bytes much contain a full PDU, not a partial one.
     *
     * @param stream The bytes to be decoded
     * @return a PwdModifyRequest object
     * @throws org.apache.directory.api.asn1.DecoderException If the decoding failed
     */
    public Asn1Object decode( byte[] stream ) throws DecoderException
    {
        ByteBuffer bb = ByteBuffer.wrap( stream );
        PasswordModifyRequestContainer container = new PasswordModifyRequestContainer();
        decoder.decode( bb, container );
        PwdModifyRequest pwdModifyRequest = container.getPwdModifyRequest();

        // Clean the container for the next decoding
        container.clean();

        return ( ( PasswordModifyRequestDecorator ) pwdModifyRequest ).getPasswordModifyRequest();
    }
}
TOP

Related Classes of org.apache.directory.api.ldap.extras.extended.ads_impl.pwdModify.PasswordModifyRequestDecoder

TOP
Copyright © 2018 www.massapi.com. 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.