Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for resolveSids (5.29 sec)

  1. src/main/java/jcifs/smb/SIDCacheImpl.java

                        resolveSids(handle, policyHandle, sids);
                    }
                }
                catch ( IOException e ) {
                    throw new CIFSException("Failed to resolve SIDs", e);
                }
            }
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

                SID.resolveSids(handle, policyHandle, sids);
            } finally {
                if (handle != null) {
                    if (policyHandle != null) {
                        policyHandle.close();
                    }
                    handle.close();
                }
            }
    }
        }
    
        static public void resolveSids(String authorityServerName,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         * 
         * @param resolveSids
         *            Attempt to resolve the SIDs within each ACE form
         *            their numeric representation to their corresponding account names.
         * @return array of ACEs
         * @throws IOException
         */
        ACE[] getSecurity ( boolean resolveSids ) throws IOException;
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SID.java

         * @throws IOException
         */
        public void resolve ( String authorityServerName, CIFSContext tc ) throws IOException {
            SID[] sids = new SID[1];
            sids[ 0 ] = this;
            tc.getSIDResolver().resolveSids(tc, authorityServerName, sids);
        }
    
    
        void resolveWeak () {
            if ( this.origin_server != null ) {
                try {
                    resolve(this.origin_server, this.origin_ctx);
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
Back to top