/**
         * Call remote procedure CB_NULL_1.
         * @throws OncRpcException if an ONC/RPC error occurs.
         * @throws IOException if an I/O error occurs.
         */
        public void CB_NULL_1()
        {
            XdrVoid args_   = XdrVoid.XDR_VOID;
            XdrVoid result_ = XdrVoid.XDR_VOID;

            client.call(NFSv4_callback.CB_NULL_1, NFSv4_callback.NFS_CB, args_, result_);
        }
        /**
         * Call remote procedure MOUNTPROC_UMNTALL_1.
         * @throws OncRpcException if an ONC/RPC error occurs.
         * @throws IOException if an I/O error occurs.
         */
        public void MOUNTPROC_UMNTALL()
        {
            XdrVoid args_   = XdrVoid.XDR_VOID;
            XdrVoid result_ = XdrVoid.XDR_VOID;

            client.call(NFSv2MountProtocol.MOUNTPROC_UMNTALL, NFSv2MountProtocol.MOUNTVERS, args_, result_);
        }
        /**
         * Call remote procedure NFSPROC3_NULL_3.
         * @throws OncRpcException if an ONC/RPC error occurs.
         * @throws IOException if an I/O error occurs.
         */
        public void NFSPROC3_NULL()
        {
            XdrVoid args_   = XdrVoid.XDR_VOID;
            XdrVoid result_ = XdrVoid.XDR_VOID;

            client.call(NFSv3Protocol.NFSPROC3_NULL, NFSv3Protocol.NFS_V3, args_, result_);
        }
Esempio n. 4
0
        /**
         * Call remote procedure NFSPROC_WRITECACHE_2.
         * @throws OncRpcException if an ONC/RPC error occurs.
         * @throws IOException if an I/O error occurs.
         */

        public void NFSPROC_WRITECACHE()
        {
            XdrVoid args_   = XdrVoid.XDR_VOID;
            XdrVoid result_ = XdrVoid.XDR_VOID;

            client.call(NFSv2Protocol.NFSPROC_WRITECACHE, NFSv2Protocol.NFS_VERSION, args_, result_);
        }
Esempio n. 5
0
        /**
         * Call remote procedure NFSPROC4_NULL_4.
         * @throws OncRpcException if an ONC/RPC error occurs.
         * @throws IOException if an I/O error occurs.
         */
        public void NFSPROC4_NULL_4()
        {
            XdrVoid args_   = XdrVoid.XDR_VOID;
            XdrVoid result_ = XdrVoid.XDR_VOID;

            client.call(NFSv4Protocol.NFSPROC4_NULL_4, NFSv4Protocol.NFS_V4, args_, result_);
        }
        /**
         * Call remote procedure MOUNTPROC_EXPORT_1.
         * @return Result from remote procedure call (of type exports).
         * @throws OncRpcException if an ONC/RPC error occurs.
         * @throws IOException if an I/O error occurs.
         */
        public Exports MOUNTPROC_EXPORT()
        {
            XdrVoid args_   = XdrVoid.XDR_VOID;
            Exports result_ = new Exports();

            client.call(NFSv2MountProtocol.MOUNTPROC_EXPORT, NFSv2MountProtocol.MOUNTVERS, args_, result_);

            return(result_);
        }
        /**
         * Call remote procedure MOUNTPROC_DUMP_1.
         * @return Result from remote procedure call (of type mountlist).
         * @throws OncRpcException if an ONC/RPC error occurs.
         * @throws IOException if an I/O error occurs.
         */
        public MountList MOUNTPROC_DUMP()
        {
            XdrVoid   args_   = XdrVoid.XDR_VOID;
            MountList result_ = new MountList();

            client.call(NFSv2MountProtocol.MOUNTPROC_DUMP, NFSv2MountProtocol.MOUNTVERS, args_, result_);

            return(result_);
        }
        /**
         * Call remote procedure MOUNTPROC_UMNT_1.
         * @param arg1 parameter (of type dirpath) to the remote procedure call.
         * @throws OncRpcException if an ONC/RPC error occurs.
         * @throws IOException if an I/O error occurs.
         */
        public void MOUNTPROC_UMNT(Name arg1)
        {
            XdrVoid result_ = XdrVoid.XDR_VOID;

            client.call(NFSv2MountProtocol.MOUNTPROC_UMNT, NFSv2MountProtocol.MOUNTVERS, arg1, result_);
        }