Examples of Close_type


Examples of org.loc.z3950.codec.Z39_50_APDU_1995.Close_type

        this.message = message;
    }

    public PDU_type produceInitializingRequest() throws ProtocolException
    {
        Close_type closeRequest = new Close_type();
        closeRequest.referenceId = ((this.referenceId == null) ? null : this.referenceId.getBytes());
        closeRequest.closeReason = BigInteger.valueOf(0);
        closeRequest.diagnosticInformation = this.message;

        return toPDU(PDU_type.close_CID, closeRequest);
View Full Code Here
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.