- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 25 for getLeaseKey (0.07 sec)
-
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakNotification.java
public Smb2LeaseBreakNotification(Configuration config) { super(config); } /** * Gets the lease key that is being broken * @return the lease key */ public Smb2LeaseKey getLeaseKey() { return leaseKey; } /** * Gets the current lease state before the break * @return the current lease state */ public int getCurrentLeaseState() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV1CreateContextRequest.java
@Override public byte[] getName() { return CONTEXT_NAME_BYTES; } /** * Gets the lease key for this lease request * @return the lease key */ public Smb2LeaseKey getLeaseKey() { return leaseKey; } /** * Sets the lease key for this lease request * @param leaseKey the lease key to set */ public void setLeaseKey(Smb2LeaseKey leaseKey) {
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/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakResponse.java
public Smb2LeaseBreakResponse(Configuration config) { super(config); } /** * Gets the lease key from the break response * @return the lease key */ public Smb2LeaseKey getLeaseKey() { return leaseKey; } /** * Gets the granted lease state from the break response * @return the lease state */ public int getLeaseState() { return leaseState;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/HandleInfoTest.java
assertArrayEquals(testFileId, info.getFileId()); assertEquals(HandleType.DURABLE_V2, info.getType()); assertEquals(120000, info.getTimeout()); assertEquals(testLeaseKey, info.getLeaseKey()); assertFalse(info.isReconnecting()); assertNull(info.getFile()); } @Test public void testHandleInfoExpiration() { // Test durable handle expiration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
public long getLastAccessTime() { return lastAccessTime; } /** * Get the associated lease key * @return the lease key (can be null) */ public Smb2LeaseKey getLeaseKey() { return leaseKey; } /** * Check if this handle is currently reconnecting * @return true if reconnecting */ public boolean isReconnecting() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextRequest.java
@Override public byte[] getName() { return CONTEXT_NAME_BYTES; } /** * Gets the lease key for this V2 lease request * @return the lease key */ public Smb2LeaseKey getLeaseKey() { return leaseKey; } /** * Sets the lease key for this V2 lease request * @param leaseKey the lease key to set */ public void setLeaseKey(Smb2LeaseKey leaseKey) {
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/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java
} @Test public void testConstructor() { assertEquals(directoryPath, entry.getDirectoryPath()); assertEquals(leaseKey, entry.getLeaseKey()); assertEquals(DirectoryCacheScope.IMMEDIATE_CHILDREN, entry.getScope()); assertFalse(entry.isComplete()); assertFalse(entry.hasChanges()); assertTrue(entry.getChildren().isEmpty()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
return directoryPath; } /** * Gets the lease key associated with this directory cache * @return the lease key */ public Smb2LeaseKey getLeaseKey() { return leaseKey; } /** * Checks if the complete directory enumeration has been cached * @return true if full enumeration is cached */ public boolean isComplete() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
// Handle the lease break leaseManager.handleLeaseBreak( breakNotif.getLeaseKey(), breakNotif.getNewLeaseState() ); // Send acknowledgment Smb2LeaseBreakAcknowledgment ack = new Smb2LeaseBreakAcknowledgment( breakNotif.getLeaseKey(), breakNotif.getNewLeaseState() );
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
assertNotNull(cacheEntry); assertEquals(directoryPath, cacheEntry.getDirectoryPath()); assertEquals(expectedKey, cacheEntry.getLeaseKey()); assertEquals(scope, cacheEntry.getScope()); } @Test public void testGetCacheEntry() { String directoryPath = "/test/dir"; Smb2LeaseKey leaseKey = new Smb2LeaseKey();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0)