- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getURLPath (1.42 sec)
-
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
// Force address resolution and set type l.getAddress(); l.updateType(SmbConstants.TYPE_SHARE); SmbResourceLocatorImpl copy = l.clone(); assertEquals(l.getURLPath(), copy.getURLPath()); assertEquals(l.getUNCPath(), copy.getUNCPath()); assertEquals(l.getShare(), copy.getShare()); assertEquals(l.getType(), copy.getType()); assertSame(l.getURL(), copy.getURL());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
return "smb://" + this.url.getAuthority() + this.getURLPath(); } return "smb://"; } @Override public String getUNCPath() { if (this.unc == null) { canonicalizePath(); } return this.unc; } @Override public String getURLPath() { if (this.unc == null) { canonicalizePath();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0)