- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 96 for CIFSException (0.13 sec)
-
src/main/java/jcifs/dcerpc/DcerpcException.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc; import jcifs.CIFSException; import jcifs.smb.WinError; import jcifs.util.Hexdump; /** * */ public class DcerpcException extends CIFSException implements DcerpcError, WinError { /** * */ private static final long serialVersionUID = -6113895861333916945L;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 09:02:44 UTC 2020 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
* @param targetHost * @param targetDomain * @param rn * @return dfs referral * @throws SmbException * @throws CIFSException */ DfsReferralData getDfsReferrals ( CIFSContext ctx, String name, String targetHost, String targetDomain, int rn ) throws CIFSException; /** * @return whether signatures are supported but not required * @throws SmbException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3K bytes - Viewed (0) -
src/main/java/jcifs/context/SingletonContext.java
* * This method can only be called once. * * @param props * @throws CIFSException */ public static synchronized final void init ( Properties props ) throws CIFSException { if ( INSTANCE != null ) { throw new CIFSException("Singleton context is already initialized"); } Properties p = new Properties(); try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 08:53:08 UTC 2019 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
*/ @Override public synchronized void close ( long lastWriteTime ) throws CIFSException { closeInternal(lastWriteTime, true); } /** * @param lastWriteTime * @throws SmbException */ void closeInternal ( long lastWriteTime, boolean explicit ) throws CIFSException { SmbTreeHandleImpl t = this.tree; try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (1) -
src/main/java/jcifs/context/AbstractCIFSContext.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.context; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.Credentials; import jcifs.smb.NtlmPasswordAuthenticator; import jcifs.smb.NtlmPasswordAuthenticator.AuthenticationType; /** * @author mbechler * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/ResourceFilter.java
* */ public interface ResourceFilter { /** * * @param resource * @return whether the given resource should be included * @throws CIFSException */ public boolean accept ( SmbResource resource ) throws CIFSException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtException.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.netbios; import jcifs.CIFSException; @SuppressWarnings ( "javadoc" ) public class NbtException extends CIFSException { /** * */ private static final long serialVersionUID = 492638554095148960L; // error classes public static final int SUCCESS = 0;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
@Test public void testPoolLogonSuccess () throws CIFSException, UnknownHostException { CIFSContext ctx = withTestNTLMCredentials(getContext()); ctx.getTransportPool().logon(ctx, ctx.getNameServiceClient().getByName(getTestServer())); } // #68 @Test ( expected = SmbAuthException.class ) public void testPoolLogonInvalid () throws CIFSException, UnknownHostException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/BaseCIFSTest.java
} protected void checkConnection ( SmbResource f ) throws CIFSException { assertNotNull(f); f.exists(); } protected SmbFile createTestFile () throws MalformedURLException, UnknownHostException, CIFSException { try ( SmbFile defaultShareRoot = getDefaultShareRoot() ) {
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/smb/SmbPipeInputStream.java
super(handle.getPipe(), th, null); this.handle = handle; } protected synchronized SmbTreeHandleImpl ensureTreeConnected () throws CIFSException { return this.handle.ensureTreeConnected(); } @Override protected synchronized SmbFileHandleImpl ensureOpen () throws CIFSException { return this.handle.ensureOpen();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:12:23 UTC 2018 - 3.5K bytes - Viewed (0)