Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SIDCacheImpl (0.08 sec)

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

     */
    public class SIDCacheImpl implements SidResolver {
    
        private static Logger log = LoggerFactory.getLogger(SIDCacheImpl.class);
    
        private final Map<SID, SID> sidCache = new HashMap<>();
    
        /**
         * Constructs a SID cache implementation.
         *
         * @param baseContext the CIFS context for this cache
         */
        public SIDCacheImpl(final CIFSContext baseContext) {
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SIDCacheImplTest.java

            }
        }
    
        @Test
        @DisplayName("resolveSids(DcerpcHandle,...) populates acct, domain and type for known types")
        void resolveSids_populatesFields_happyPath() throws Exception {
            SIDCacheImpl cache = new SIDCacheImpl(mock(CIFSContext.class));
            DcerpcHandle handle = mock(DcerpcHandle.class);
            LsaPolicyHandle policy = mock(LsaPolicyHandle.class);
    
            // Prepare input SIDs
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14K bytes
    - Viewed (0)
Back to top