- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for CIFSContextWrapper (0.16 sec)
-
src/main/java/jcifs/context/CIFSContextWrapper.java
/** * @author mbechler * */ public class CIFSContextWrapper implements CIFSContext { private final CIFSContext delegate; private Handler wrappedHandler; /** * @param delegate * context to delegate non-override methods to * */ public CIFSContextWrapper ( CIFSContext delegate ) { this.delegate = delegate; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextCredentialWrapper.java
import jcifs.smb.SmbRenewableCredentials; /** * Context wrapper supplying alternate credentials * * @author mbechler * */ public final class CIFSContextCredentialWrapper extends CIFSContextWrapper implements CIFSContext { private Credentials creds; /** * @param delegate * @param creds * Crendentials to use */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Aug 02 08:32:29 UTC 2018 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/BaseCIFSTest.java
import jcifs.Configuration; import jcifs.SmbResource; import jcifs.config.DelegatingConfiguration; import jcifs.config.PropertyConfiguration; import jcifs.context.BaseContext; import jcifs.context.CIFSContextWrapper; import jcifs.smb.NtlmPasswordAuthenticator; import jcifs.smb.SmbFile; /** * @author mbechler * */ @SuppressWarnings ( "javadoc" ) public abstract class BaseCIFSTest {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
* allow to create such sub-contexts. * * * Implementors of this interface should extend {@link jcifs.context.BaseContext} or * {@link jcifs.context.CIFSContextWrapper} to get forward compatibility. * * @author mbechler * */ public interface CIFSContext { /** * Get a resource * * @param url
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/TimeoutTest.java
import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.NameServiceClient; import jcifs.NetbiosAddress; import jcifs.SmbResource; import jcifs.config.DelegatingConfiguration; import jcifs.context.CIFSContextWrapper; import jcifs.netbios.UniAddress; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbSessionInternal; import jcifs.smb.SmbTransportInternal; import jcifs.smb.SmbTransportPoolImpl;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
import jcifs.context.SingletonContext; /** * This class now contains only utilities for config parsing. * * We strongly suggest that you create an explicit {@link jcifs.context.CIFSContextWrapper} * with your desired config. It's base implementation {@link jcifs.context.BaseContext} * should be sufficient for most needs. * * If you want to retain the classic singleton behavior you can use
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/EnumTest.java
import jcifs.CloseableIterator; import jcifs.ResolverType; import jcifs.SmbConstants; import jcifs.SmbResource; import jcifs.SmbTreeHandle; import jcifs.config.DelegatingConfiguration; import jcifs.context.CIFSContextWrapper; import jcifs.netbios.NameServiceClientImpl; import jcifs.smb.DosFileFilter; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbFilenameFilter;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0)