- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 74 for guest (0.03 sec)
-
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
assertEquals("Rguest", permissionHelper.encode("(allow){role}guest")); assertEquals("2guest", permissionHelper.encode("(allow){group}guest")); assertEquals("1guest", permissionHelper.encode("(allow){USER}guest")); assertEquals("Rguest", permissionHelper.encode("(allow){ROLE}guest")); assertEquals("2guest", permissionHelper.encode("(allow){GROUP}guest"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
import jcifs.util.Crypto; import jcifs.util.Strings; /** * This class stores and encrypts NTLM user credentials. * * Contrary to {@link NtlmPasswordAuthentication} this does not cause guest authentication * when the "guest" username is supplied. Use {@link AuthenticationType} instead. * * @author mbechler */ @SuppressWarnings ( "javadoc" )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
CIFSContext ctx = getContext(); ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) { @Override public String getGuestUsername () { return "jcifs-guest"; } }).withGuestCrendentials(); try ( SmbResource f = new SmbFile(getTestShareGuestURL(), ctx) ) { checkConnection(f); } catch ( SmbAuthException e ) {
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/main/java/jcifs/Credentials.java
*/ String getUserDomain (); /** * @return whether these are anonymous credentials */ boolean isAnonymous (); /** * @return whether these are guest credentials */ boolean isGuest ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_user.role/role.bulk
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 144 bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return password used when guest authentication is requested */ String getGuestPassword (); /** * Property <tt>jcifs.smb.client.guestUsername</tt>, defaults to GUEST * * @return username used when guest authentication is requested */ String getGuestUsername (); /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
src/test/java/jcifs/tests/TestProperties.java
static final String TEST_SHARE_URL_DFSROOT = "test.share.dfsroot.url"; static final String TEST_SHARE_MAIN = "test.share.main"; static final String TEST_SHARE_GUEST = "test.share.guest"; static final String TEST_USER_NAME = "test.user.name"; static final String TEST_USER_PASSWORD = "test.user.password"; static final String TEST_USER_DOMAIN = "test.user.domain";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Feb 29 16:38:58 UTC 2020 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
super( userInfo, tc.getConfig().getDefaultDomain(), tc.getConfig().getDefaultUsername() != null ? tc.getConfig().getDefaultUsername() : "GUEST", tc.getConfig().getDefaultPassword() != null ? tc.getConfig().getDefaultPassword() : ""); this.context = tc; } /** * Create an <tt>NtlmPasswordAuthentication</tt> object from a
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 8.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/index.jsp
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/context/AbstractCIFSContext.java
* @see jcifs.CIFSContext#withGuestCrendentials() */ @Override public CIFSContext withGuestCrendentials () { return withCredentials(new NtlmPasswordAuthenticator(null, null, null, AuthenticationType.GUEST)); } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getCredentials() */ @Override public Credentials getCredentials () { return getDefaultCredentials();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 3.7K bytes - Viewed (0)