Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for LeaseV2CreateContextResponse (0.19 seconds)

  1. src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextResponse.java

    import jcifs.internal.smb2.lease.Smb2LeaseKey;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 Lease V2 Create Context Response
     *
     * MS-SMB2 2.2.14.2.11
     */
    public class LeaseV2CreateContextResponse implements CreateContextResponse {
    
        /**
         * Context name for lease V2 response
         */
        public static final String CONTEXT_NAME = "RqL2";
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 02:21:31 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextRequest.java

    Shinsuke Sugaya <******@****.***> 1755915691 +0900
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 02:21:31 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

         * @return the lease V2 context or null if not present
         */
        public LeaseV2CreateContextResponse getLeaseV2Context() {
            if (this.createContexts != null) {
                for (CreateContextResponse ctx : this.createContexts) {
                    if (ctx instanceof LeaseV2CreateContextResponse) {
                        return (LeaseV2CreateContextResponse) ctx;
                    }
                }
            }
            return null;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:49:49 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

    Shinsuke Sugaya <******@****.***> 1755915691 +0900
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 02:21:31 GMT 2025
    - 22.9K bytes
    - Click Count (0)
Back to Top