Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getURLPath (0.13 sec)

  1. 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)
  2. 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)
  3. src/test/java/jcifs/SmbResourceLocatorTest.java

                this.dfsReferral = dfsReferral;
            }
    
            @Override
            public String getUNCPath() {
                return null;
            }
    
            @Override
            public String getURLPath() {
                return null;
            }
    
            @Override
            public String getShare() {
                return null;
            }
    
            @Override
            public String getServerWithDfs() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbResourceLocator.java

        String getUNCPath();
    
        /**
         * Returns the canonicalized URL path relative to the server or domain.
         *
         * @return The canonicalized URL path (relative to the server/domain)
         */
        String getURLPath();
    
        /**
         * Retrieves the share associated with this SMB resource. In
         * the case of <code>smb://</code>, <code>smb://workgroup/</code>,
         * and <code>smb://server/</code> URLs which do not specify a share,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top