Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for UserInfo (0.3 sec)

  1. src/main/java/org/codelibs/fess/es/log/exentity/UserInfo.java

    import java.time.format.DateTimeFormatter;
    import java.util.Map;
    
    import org.codelibs.fess.entity.SearchLogEvent;
    import org.codelibs.fess.es.log.bsentity.BsUserInfo;
    
    /**
     * @author FreeGen
     */
    public class UserInfo extends BsUserInfo implements SearchLogEvent {
    
        private static final long serialVersionUID = 1L;
    
        private Map<String, Object> fields;
    
        @Override
        public String getId() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/UserInfoDbm.java

        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((UserInfo) et).getCreatedAt(), (et, vl) -> ((UserInfo) et).setCreatedAt(DfTypeUtil.toLocalDateTime(vl)),
                    "createdAt");
            setupEpg(_epgMap, et -> ((UserInfo) et).getUpdatedAt(), (et, vl) -> ((UserInfo) et).setUpdatedAt(DfTypeUtil.toLocalDateTime(vl)),
                    "updatedAt");
        }
    
        @Override
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  3. internal/config/identity/openid/providercfg.go

    	}
    	return p.roleArn.String()
    }
    
    // UserInfo returns claims for authenticated user from userInfo endpoint.
    //
    // Some OIDC implementations such as GitLab do not support
    // claims as part of the normal oauth2 flow, instead rely
    // on service providers making calls to IDP to fetch additional
    // claims available from the UserInfo endpoint
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

                    final Set<String> permissionSet = new HashSet<>();
                    final UserInfo userInfo = authResult.getUserInfo();
                    final String uniqueId = userInfo.getUniqueId();
                    final String displayableId = userInfo.getDisplayableId();
                    if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/bsbhv/BsUserInfoBhv.java

            return createOptionalEntity(doSelectByPK(id, tp), id);
        }
    
        @Override
        protected Class<? extends UserInfo> typeOfSelectedEntity() {
            return UserInfo.class;
        }
    
        @Override
        protected Class<UserInfo> typeOfHandlingEntity() {
            return UserInfo.class;
        }
    
        @Override
        protected Class<UserInfoCB> typeOfHandlingConditionBean() {
            return UserInfoCB.class;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

    // SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.
    message SelfSubjectReviewStatus {
      // User attributes of the user making this request.
      // +optional
      optional k8s.io.api.authentication.v1.UserInfo userInfo = 1;
    }
    
    // TokenReview attempts to authenticate a token to a known user.
    // Note: TokenReview requests may be cached by the webhook token authenticator
    // plugin in the kube-apiserver.
    message TokenReview {
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                String userInfo = url.getUserInfo();
                if (userInfo != null) {
                    userInfo = URLDecoder.decode(userInfo);
                    int index = userInfo.indexOf(':');
                    user = (index != -1) ? userInfo.substring(0, index) : userInfo;
                    if (index != -1) password = userInfo.substring(index + 1);
                    index = user.indexOf('\\');
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

     * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
     * is used internally be jCIFS when parsing SMB URLs.
     */
    
        public NtlmPasswordAuthentication( String userInfo ) {
            domain = username = password = null;
    
            if( userInfo != null ) {
                try {
                    userInfo = unescape( userInfo );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

        @Resource
        protected FessConfig fessConfig;
    
        public boolean addUrl(final String userCode, final BiConsumer<UserInfo, FavoriteLog> favoriteLogLambda) {
            return userInfoBhv.selectByPK(userCode).map(userInfo -> {
                final FavoriteLog favoriteLog = new FavoriteLog();
                favoriteLogLambda.accept(userInfo, favoriteLog);
                favoriteLogBhv.insert(favoriteLog);
                if (fessConfig.isLoggingSearchUseLogfile()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            }).orElseGet(() -> {
                final UserInfo e = new UserInfo();
                e.setId(userCode);
                e.setCreatedAt(now);
                e.setUpdatedAt(now);
                return e;
            });
            CommonPoolUtil.execute(() -> userInfoBhv.insertOrUpdate(userInfo));
            return userInfo;
        }
    
        public OptionalEntity<UserInfo> getUserInfo(final String userCode) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
Back to top