Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for resolveSids (0.23 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 Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SidResolver.java

         *            may be queried with the <tt>toDisplayString</tt>, <tt>getDomainName</tt>, and <tt>getAccountName</tt>
         *            methods.
         * @throws CIFSException
         */
        void resolveSids ( CIFSContext tc, String authorityServerName, SID[] sids ) throws CIFSException;
    
    
        /**
         * Resolve part of an array of SIDs using a cache and at most one MSRPC request.
         *
         * @param tc
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  3. 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 Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  4. 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 Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

            return new SmbRandomAccessFile(this, mode, sharing, false);
        }
    
    
        private void processAces ( ACE[] aces, boolean resolveSids ) throws IOException {
            String server = this.fileLocator.getServerWithDfs();
            int ai;
    
            if ( resolveSids ) {
                SID[] sids = new SID[aces.length];
                for ( ai = 0; ai < aces.length; ai++ ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            return new SmbFileOutputStream( this );
        }
    
        private void processAces(ACE[] aces, boolean resolveSids) throws IOException {
            String server = getServerWithDfs();
            int ai;
    
            if (resolveSids) {
                SID[] sids = new SID[aces.length];
                String[] names = null;
    
                for (ai = 0; ai < aces.length; ai++) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. 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 Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
Back to top