Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for configurations (0.24 sec)

  1. src/main/java/jcifs/Configuration.java

     * Implementors of this interface should extend {@link jcifs.config.BaseConfiguration} or
     * {@link jcifs.config.DelegatingConfiguration} to get forward compatibility.
     * 
     * @author mbechler
     *
     */
    public interface Configuration {
    
        /**
         * 
         * @return random source to use
         */
        SecureRandom getRandom ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.dfs.ttl</tt> (int, default 300)
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/AllTests.java

                CONTEXT_CACHE.put(context, cached);
            }
            return cached;
        }
    
    
        /**
         * @param applyMutations
         * @return configurations available for running
         * 
         */
        public synchronized static Map<String, Map<String, String>> getConfigs ( String[] applyMutations ) {
            Map<String, Map<String, String>> configs = new HashMap<>();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

         * 
         * @param config
         */
        public SmbComReadAndX ( Configuration config ) {
            super(config, SMB_COM_READ_ANDX);
            this.openTimeout = 0xFFFFFFFF;
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param offset
         * @param maxCount
         * @param andx
         */
        public SmbComReadAndX ( Configuration config, int fid, long offset, int maxCount, ServerMessageBlock andx ) {
    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)
  4. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

         * @param controlCode
         * 
         */
        public Smb2IoctlRequest ( Configuration config, int controlCode ) {
            this(config, controlCode, Smb2Constants.UNSPECIFIED_FILEID);
        }
    
    
        /**
         * @param config
         * @param controlCode
         * @param fileId
         */
        public Smb2IoctlRequest ( Configuration config, int controlCode, byte[] fileId ) {
            super(config, SMB2_IOCTL);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 07:13:17 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameQueryRequest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.netbios;
    
    
    import jcifs.Configuration;
    
    
    class NameQueryRequest extends NameServicePacket {
    
        NameQueryRequest ( Configuration config, Name name ) {
            super(config);
            this.questionName = name;
            this.questionType = NB;
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComDeleteDirectory.java

     */
    
    package jcifs.internal.smb1.com;
    
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.ServerMessageBlock;
    
    
    /**
     * 
     */
    public class SmbComDeleteDirectory extends ServerMessageBlock {
    
        /**
         * 
         * @param config
         * @param path
         */
        public SmbComDeleteDirectory ( Configuration config, String path ) {
            super(config, SMB_COM_DELETE_DIRECTORY, path);
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/io/Smb2WriteResponse.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.io;
    
    
    import jcifs.Configuration;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.smb2.ServerMessageBlock2Response;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
     *
     */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/session/Smb2LogoffRequest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.session;
    
    
    import jcifs.CIFSContext;
    import jcifs.Configuration;
    import jcifs.internal.smb2.ServerMessageBlock2Request;
    import jcifs.internal.smb2.Smb2Constants;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
     *
     */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComSetInformation.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.internal.smb1.com;
    
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.ServerMessageBlock;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     * @author mbechler
     *
     */
    public class SmbComSetInformation extends ServerMessageBlock {
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/io/Smb2FlushRequest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.io;
    
    
    import jcifs.CIFSContext;
    import jcifs.Configuration;
    import jcifs.internal.smb2.RequestWithFileId;
    import jcifs.internal.smb2.ServerMessageBlock2Request;
    import jcifs.internal.smb2.Smb2Constants;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.7K bytes
    - Viewed (0)
Back to top