Examples of Records_type


Examples of com.k_int.gen.Z39_50_APDU_1995.Records_type

     * @param count the number of records to return.
     * @param recordFormatSetname the size of the set.
     */
    Records_type createRecordsFor(SearchTask st, int[] preferredRecordSyntax,
        int start, int count, String recordFormatSetname) {
        Records_type retval = new Records_type();

        LOGGER.finer("createRecordsFor(st, " + start + "," + count + ")");
        LOGGER.finer("pref rec syn = " + preferredRecordSyntax);
        LOGGER.finer("record setname = " + recordFormatSetname);
        LOGGER.finer("search task = " + st);
View Full Code Here

Examples of com.k_int.gen.Z39_50_APDU_1995.Records_type

    }

    //TODO: It'd be nice to have better diagnostics, use explicit diagnostic
    //(use DiagFormat_type from jzkit) and specify exactly what the problem is
    private Records_type createNSD(String diag_code, String additional) {
        Records_type retval = new Records_type();
        retval.which = Records_type.nonsurrogatediagnostic_CID;

        DefaultDiagFormat_type default_diag = new DefaultDiagFormat_type();
        retval.o = default_diag;
View Full Code Here

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

    @SuppressWarnings("unchecked")
    public void process(PDU_type pdu) throws ProtocolException
    {
        PresentResponse_type presentResponse = (PresentResponse_type) pdu.o;
        Records_type recordsType = presentResponse.records;

        if (recordsType == null)
        {
            throw new ProtocolException("Records attribute of present-response PDU is null");
        }
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.