Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setInfoType (0.04 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

         */
        public final void setInfoType(final byte infoType) {
            this.infoType = infoType;
        }
    
        /**
         * Sets the file information class for the query
         *
         * @param fileInfoClass
         *            the fileInfoClass to set
         */
        public final void setFileInfoClass(final byte fileInfoClass) {
            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

            this.fileId = fileId;
        }
    
        /**
         * Sets the information type for the set info operation
         *
         * @param infoType
         *            the infoType to set
         */
        public void setInfoType(final byte infoType) {
            this.infoType = infoType;
        }
    
        /**
         * Sets the file information class for the set info operation
         *
         * @param fileInfoClass
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top