Package com.day.ldap.ber.stream

Examples of com.day.ldap.ber.stream.BEROctetString


     * Retrieves the ber representation.
     * @return ber representation
     */
    public BERElement getBERElement() {
        BERSequence seq = new BERSequence();
        seq.addElement(new BEROctetString(m_type));
        seq.addElement(new BEROctetString(m_val));
        return seq;
    }
View Full Code Here

TOP

Related Classes of com.day.ldap.ber.stream.BEROctetString

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.