- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for setLeaseState (0.08 sec)
-
src/main/java/jcifs/internal/smb2/create/LeaseV1CreateContextRequest.java
*/ public int getLeaseState() { return leaseState; } /** * Sets the requested lease state flags * @param leaseState the lease state to set */ public void setLeaseState(int leaseState) { this.leaseState = leaseState; } /** * Gets the lease flags for this request * @return the lease flags */ public int getLeaseFlags() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/LeaseV1CreateContextRequestTest.java
} @Test @DisplayName("Should set and get lease state") void testLeaseStateAccessors() { int newState = Smb2LeaseState.SMB2_LEASE_FULL; leaseContext.setLeaseState(newState); assertEquals(newState, leaseContext.getLeaseState()); } @Test @DisplayName("Should set and get lease flags") void testLeaseFlagsAccessors() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextRequest.java
public int getLeaseState() { return leaseState; } /** * Sets the requested lease state flags for V2 * @param leaseState the lease state to set */ public void setLeaseState(int leaseState) { this.leaseState = leaseState; } /** * Gets the lease flags for this V2 request * @return the lease flags */ public int getLeaseFlags() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
public int getLeaseState() { return leaseState; } /** * Sets the lease state flags for this directory * @param leaseState the lease state to set */ public void setLeaseState(int leaseState) { this.leaseState = leaseState; } /** * Gets the cache scope for directory enumeration caching * @return the cache scope */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 9.4K bytes - Viewed (0)