Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DelegatingConfiguration (0.09 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

     *
     * @author mbechler
     */
    public class DelegatingConfiguration implements Configuration {
    
        private final Configuration delegate;
    
        /**
         * Creates a delegating configuration that forwards calls to another configuration
         * @param delegate
         *            delegate to pass all non-overridden method calls to
         *
         */
        public DelegatingConfiguration(final Configuration delegate) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/DelegatingConfigurationTest.java

    import jcifs.ResolverType;
    
    /**
     * Comprehensive test suite for DelegatingConfiguration class.
     * Tests the delegation pattern and ensures all methods properly delegate.
     */
    @DisplayName("DelegatingConfiguration Tests")
    class DelegatingConfigurationTest extends BaseTest {
    
        @Mock
        private Configuration mockDelegate;
    
        private DelegatingConfiguration delegatingConfig;
    
        @BeforeEach
        void setUp() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

    import java.security.SecureRandom;
    import java.util.List;
    import java.util.TimeZone;
    
    /**
     *
     *
     * Implementors of this interface should extend {@link jcifs.config.BaseConfiguration} or
     * {@link jcifs.config.DelegatingConfiguration} to get forward compatibility.
     *
     * @author mbechler
     *
     */
    public interface Configuration {
    
        /**
         * Gets the secure random number generator for cryptographic operations
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top