Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Guest (0.17 sec)

  1. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

            assertEquals("DRguest", permissionHelper.encode("(deny){role}guest"));
            assertEquals("D2guest", permissionHelper.encode("(deny){group}guest"));
            assertEquals("D1guest", permissionHelper.encode("(deny){USER}guest"));
            assertEquals("DRguest", permissionHelper.encode("(deny){ROLE}guest"));
            assertEquals("D2guest", permissionHelper.encode("(deny){GROUP}guest"));
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  2. 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 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/index.jsp

    										class="fa fa-exclamation-triangle text-warning"
    									></a></li>
    							</c:if>
    							<c:choose>
    								<c:when test="${!empty username && username != 'guest'}">
    									<li class="nav-item">
    										<div class="dropdown">
    											<a class="nav-link dropdown-toggle" data-toggle="dropdown"
    												href="#" role="button" aria-haspopup="true"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.9K bytes
    - Viewed (1)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

                            } catch (SmbException se) {
                                ex = se;
                            }
        
                            if( response.isLoggedInAsGuest &&
                                        "GUEST".equalsIgnoreCase( auth.username ) == false &&
                                        transport.server.security != SmbConstants.SECURITY_SHARE &&
                                        auth != NtlmPasswordAuthentication.ANONYMOUS) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Credentials.java

         */
        String getUserDomain ();
    
    
        /**
         * @return whether these are anonymous credentials
         */
        boolean isAnonymous ();
    
    
        /**
         * @return whether these are guest credentials
         */
        boolean isGuest ();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  6. 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();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 3.7K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/header.jsp

    								class="fa fa-exclamation-triangle text-warning"
    							></a></li>
    					</c:if>
    					<c:choose>
    						<c:when test="${!empty username && username != 'guest'}">
    							<li class="nav-item">
    								<div class="dropdown">
    									<a class="nav-link dropdown-toggle" data-toggle="dropdown"
    										href="#" role="button" aria-haspopup="true"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/header.jsp

    								class="fa fa-exclamation-triangle text-warning"
    							></a></li>
    					</c:if>
    					<c:choose>
    						<c:when test="${!empty username && username != 'guest'}">
    							<li class="nav-item">
    								<div class="dropdown">
    									<a class="nav-link dropdown-toggle" data-toggle="dropdown"
    										href="#" role="button" aria-haspopup="true"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/CIFSContext.java

    
        /**
         * @return a child context using anonymous credentials
         */
        CIFSContext withAnonymousCredentials ();
    
    
        /**
         * 
         * @return a child context using guest credentials
         */
        CIFSContext withGuestCrendentials ();
    
    
        /**
         * 
         * @param creds
         * @return a child context using using the given credentials
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
  10. 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" )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
Back to top