Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

         * @param infoType
         *            the infoType to set
         */
        public final void setInfoType ( byte infoType ) {
            this.infoType = infoType;
        }
    
    
        /**
         * @param fileInfoClass
         *            the fileInfoClass to set
         */
        public final void setFileInfoClass ( byte fileInfoClass ) {
            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
            this.fileInfoClass = fileInfoClass;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 10:41:31 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

         */
        @Override
        public void setFileId ( byte[] fileId ) {
            this.fileId = fileId;
        }
    
    
        /**
         * @param infoType
         *            the infoType to set
         */
        public void setInfoType ( byte infoType ) {
            this.infoType = infoType;
        }
    
    
        /**
         * @param fileInfoClass
         *            the fileInfoClass to set
         */
        public void setFileInfoClass ( byte fileInfoClass ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.8K bytes
    - Viewed (0)
Back to top