- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getLogonShare (0.22 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getNetbiosHostname(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getLogonShare() */ @Override public String getLogonShare () { return this.delegate.getLogonShare(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getDefaultDomain() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
SmbSessionInternal smbSession = smbTransport.getSmbSession(tf, dc.getHostName(), null).unwrap(SmbSessionInternal.class); SmbTreeInternal tree = smbSession.getSmbTree(tf.getConfig().getLogonShare(), null).unwrap(SmbTreeInternal.class) ) { tree.connectLogon(tf); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.dfsTTL; } @Override public boolean isDfsConvertToFQDN () { return this.dfsConvertToFqdn; } @Override public String getLogonShare () { return this.logonShare; } @Override public String getDefaultDomain () { return this.defaultDomain; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
* * @throws SmbException */ @Override public void treeConnectLogon () throws SmbException { String logonShare = getContext().getConfig().getLogonShare(); if ( logonShare == null || logonShare.isEmpty() ) { throw new SmbException("Logon share is not defined"); } try ( SmbTreeImpl t = getSmbTree(logonShare, null) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
* * @see jcifs.smb.SmbTreeInternal#connectLogon(jcifs.CIFSContext) */ @Override @Deprecated public void connectLogon ( CIFSContext tf ) throws SmbException { if ( tf.getConfig().getLogonShare() == null ) { try { treeConnect(null, null); } catch ( SmbException e ) { throw e; } catch ( CIFSException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property <tt>jcifs.smb.client.logonShare</tt> * * @return share to connect to during authentication, if unset connect to IPC$ */ String getLogonShare (); /** * * * Property <tt>jcifs.smb.client.domain</tt> * * @return default credentials, domain name */ String getDefaultDomain ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)