• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java StringSupport类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中net.shibboleth.utilities.java.support.primitive.StringSupport的典型用法代码示例。如果您正苦于以下问题:Java StringSupport类的具体用法?Java StringSupport怎么用?Java StringSupport使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



StringSupport类属于net.shibboleth.utilities.java.support.primitive包,在下文中一共展示了StringSupport类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: doExecute

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
protected void doExecute(@Nonnull final ProfileRequestContext profileRequestContext) {
    final String nameNoTag = StringSupport.trimOrNull(getInputMetadata().getName());
    final Map<LangTag, String> map = getInputMetadata().getNameEntries();
    if (nameNoTag != null) {
        log.debug("{} Found client name without name tag: {}", getLogPrefix(), nameNoTag);
        getOutputMetadata().setName(nameNoTag, null);
    }
    if (map != null && !map.isEmpty()) {
        final Iterator<LangTag> tags = map.keySet().iterator();
        while (tags.hasNext()) {
            final LangTag tag = tags.next();
            final String name = StringSupport.trimOrNull(map.get(tag));
            if (name != null) {
                log.debug("{} Found client name {} for language tag {}", getLogPrefix(), name, tag);
                getOutputMetadata().setName(name, tag);
            }
        }
    }
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:22,代码来源:AddClientNameToClientMetadata.java


示例2: doDecode

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
protected void doDecode() throws MessageDecodingException {
    final MessageContext<OIDCWebFingerRequest> messageContext = new MessageContext<>();
    final HttpServletRequest httpRequest = getHttpServletRequest();
    final String resource = StringSupport.trimOrNull(httpRequest.getParameter("resource"));
    if (resource == null) {
        log.error("No resource parameter value found from the request");
        throw new MessageDecodingException("Mandatory value for resource is missing");
    }
    final String rel = StringSupport.trim(httpRequest.getParameter("rel"));
    if (rel == null) {
        log.error("No rel parameter value found from the request");
        throw new MessageDecodingException("Mandatory value for rel is missing");
    }
    final OIDCWebFingerRequestImpl request = new OIDCWebFingerRequestImpl(resource, rel);
    log.debug("Decoded Web Finger request with resource = {} and rel = {}", resource, rel);
    messageContext.setMessage(request);
    setMessageContext(messageContext);
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:21,代码来源:OIDCWebFingerRequestDecoder.java


示例3: init

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
@Override
public void init(final FilterConfig config) throws ServletException {
  String param = config.getInitParameter(LEAF_HEADERS_PARAM);
  if (param != null) {
  leafHeader = param;
}
log.info("ProxyX509Filter will check for the leaf certificate in: {}", leafHeader);

param = config.getInitParameter(CHAIN_HEADERS_PARAM);
  if (param != null) {
      final String[] headers = param.split(" ");
      if (headers != null) {
          chainHeaders = StringSupport.normalizeStringCollection(Arrays.asList(headers));
      }
  }
log.info("ProxyX509Filter will check for chain certificates in: {}", chainHeaders);
}
 
开发者ID:icb-,项目名称:apache-proxy-x509-filter,代码行数:18,代码来源:ProxyX509Filter.java


示例4: doParse

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
protected void doParse(@Nonnull final Element config, @Nonnull final ParserContext parserContext,
        @Nonnull final BeanDefinitionBuilder builder) {

    super.doParse(config, parserContext, builder);
    if (config.hasAttributeNS(null, AS_ARRAY_ATTRIBUTE_NAME)) {
        builder.addPropertyValue("asArray",
                StringSupport.trimOrNull(config.getAttributeNS(null, AS_ARRAY_ATTRIBUTE_NAME)));
    }
    if (config.hasAttributeNS(null, AS_INT_ATTRIBUTE_NAME)) {
        builder.addPropertyValue("asInt",
                StringSupport.trimOrNull(config.getAttributeNS(null, AS_INT_ATTRIBUTE_NAME)));
    }
    if (config.hasAttributeNS(null, STRING_DELIMETER_ATTRIBUTE_NAME)) {
        builder.addPropertyValue("stringDelimiter",
                StringSupport.trimOrNull(config.getAttributeNS(null, STRING_DELIMETER_ATTRIBUTE_NAME)));
    }
    if (config.hasAttributeNS(null, AS_OBJECT_ATTRIBUTE_NAME)) {
        builder.addPropertyValue("asObject",
                StringSupport.trimOrNull(config.getAttributeNS(null, AS_OBJECT_ATTRIBUTE_NAME)));
    }
    if (config.hasAttributeNS(null, FIELD_NAME_ATTRIBUTE_NAME)) {
        builder.addPropertyValue("fieldName",
                StringSupport.trimOrNull(config.getAttributeNS(null, FIELD_NAME_ATTRIBUTE_NAME)));
    }
    if (config.hasAttributeNS(null, AS_BOOLEAN_ATTRIBUTE_NAME)) {
        builder.addPropertyValue("asBoolean",
                StringSupport.trimOrNull(config.getAttributeNS(null, AS_BOOLEAN_ATTRIBUTE_NAME)));
    }
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:32,代码来源:AbstractOIDCEncoderParser.java


示例5: doParse

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
protected void doParse(@Nonnull final Element config, @Nonnull final ParserContext parserContext,
        @Nonnull final BeanDefinitionBuilder builder) {
    
    super.doParse(config, parserContext, builder);
    
    if (config.hasAttributeNS(null, SCOPE_DELIMETER_ATTRIBUTE_NAME)) {
        builder.addPropertyValue("scopeDelimiter",
                StringSupport.trimOrNull(config.getAttributeNS(null, SCOPE_DELIMETER_ATTRIBUTE_NAME)));
    }
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:13,代码来源:OIDCScopedStringEncoderParser.java


示例6: doNativeParse

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
protected void doNativeParse(@Nonnull final Element config, @Nonnull final ParserContext parserContext,
        @Nonnull final BeanDefinitionBuilder builder) {
    super.doParse(config, builder);

    
    if (config.hasAttributeNS(null, "onlyIfEssential")) {
        builder.addPropertyValue("onlyIfEssential",
                StringSupport.trimOrNull(config.getAttributeNS(null, "onlyIfEssential")));
    }

    if (config.hasAttributeNS(null, "matchOnlyIDToken")) {
        builder.addPropertyValue("matchOnlyIDToken",
                StringSupport.trimOrNull(config.getAttributeNS(null, "matchOnlyIDToken")));
    }

    if (config.hasAttributeNS(null, "matchOnlyUserInfo")) {
        builder.addPropertyValue("matchOnlyUserInfo",
                StringSupport.trimOrNull(config.getAttributeNS(null, "matchOnlyUserInfo")));
    }

    if (config.hasAttributeNS(null, "matchIfRequestedClaimsSilent")) {
        builder.addPropertyValue("matchIfRequestedClaimsSilent",
                StringSupport.trimOrNull(config.getAttributeNS(null, "matchIfRequestedClaimsSilent")));
    }

}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:29,代码来源:AttributeInOIDCRequestedClaimsRuleParser.java


示例7: populateSubject

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
@Override
protected Subject populateSubject(Subject subject) {
	logger.debug("{} TokenValidator populateSubject is called", getLogPrefix());		
	if (StringSupport.trimOrNull(username) != null) {
		logger.debug("{} Populate subject {}", getLogPrefix(), username);
		subject.getPrincipals().add(new UsernamePrincipal(username));
		return subject;
	}
	return null;
}
 
开发者ID:cyber-simon,项目名称:idp-auth-linotp,代码行数:11,代码来源:TokenValidator.java


示例8: doExecute

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
@Override
protected void doExecute(@Nonnull final ProfileRequestContext<SAMLObject, SAMLObject> profileRequestContext,
		@Nonnull final AuthenticationContext authenticationContext) {
	
	final HttpServletRequest request = getHttpServletRequest();

	if (request == null) {
		logger.debug("{} Empty HttpServletRequest", getLogPrefix());
		ActionSupport.buildEvent(profileRequestContext, AuthnEventIds.NO_CREDENTIALS);
		return;
	}

	try {

		TokenContext tokenCtx = authenticationContext.getSubcontext(TokenContext.class, true);

		/** get tokencode from request **/
		String value = StringSupport.trimOrNull(request.getParameter(tokenCodeField));

		if (Strings.isNullOrEmpty(value)) {
			logger.debug("{} Empty tokenCode", getLogPrefix());
			ActionSupport.buildEvent(profileRequestContext, AuthnEventIds.INVALID_CREDENTIALS);
			return;
		} else {
			logger.debug("{} TokenCode: {}", getLogPrefix(), value);

			/** set tokencode to TokenCodeContext **/
			tokenCtx.setToken(value);
			logger.debug("Put Token code to the TokenCodeCtx");
			return;
		}

	} catch (Exception e) {
		logger.warn("{} Login by {} produced exception", getLogPrefix(),  e);
	}		
}
 
开发者ID:cyber-simon,项目名称:idp-auth-linotp,代码行数:37,代码来源:ExtractTokenFromForm.java


示例9: doExecute

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/** {@inheritDoc} */
@Override protected void doExecute(@Nonnull final ProfileRequestContext profileRequestContext,
        @Nonnull final ProfileInterceptorContext interceptorContext) {

    final ConsentContext consentContext = getConsentContext();

    final HttpServletRequest request = getHttpServletRequest();
    if (request == null) {
        log.debug("{} Profile action does not contain an HttpServletRequest", getLogPrefix());
        ActionSupport.buildEvent(profileRequestContext, EventIds.INVALID_PROFILE_CTX);
        return;
    }

    final String[] consentIdsRequestParameterValues = request.getParameterValues(CONSENT_IDS_REQUEST_PARAMETER);
    if (consentIdsRequestParameterValues == null) {
        log.debug("{} No consent choices available from user input", getLogPrefix());
        return;
    }

    final Collection<String> consentIds =
            StringSupport.normalizeStringCollection(Arrays.asList(consentIdsRequestParameterValues));
    log.debug("{} Extracted consent ids '{}' from request parameter '{}'", getLogPrefix(), consentIds,
            CONSENT_IDS_REQUEST_PARAMETER);

    final Map<String, Consent> currentConsents = getConsentContext().getCurrentConsents();
    for (final Consent consent : currentConsents.values()) {
        if (consentIds.contains(consent.getId())) {
            consent.setApproved(Boolean.TRUE);
        } else {
            consent.setApproved(Boolean.FALSE);
        }
    }

    log.debug("{} Consent context '{}'", getLogPrefix(), consentContext);
}
 
开发者ID:cmu-cylab-privacylens,项目名称:PrivacyLens,代码行数:36,代码来源:ExtractConsent.java


示例10: ProxyGrantingTicket

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Creates a proxy-granting ticket with the given values.
 *
 * @param id Ticket ID.
 * @param sessionId IdP session ID used to create ticket.
 * @param service Service that requested the ticket.
 * @param expiration Expiration instant.
 * @param parentId ID of parent proxy-granting ticket or null if this is first proxy in chain.
 */
public ProxyGrantingTicket(
        @Nonnull final String id,
        @Nonnull final String sessionId,
        @Nonnull final String service,
        @Nonnull final Instant expiration,
        @Nullable final String parentId) {
    super(id, sessionId, service, expiration);
    this.parentId = StringSupport.trimOrNull(parentId);
}
 
开发者ID:serac,项目名称:shibboleth-idp-ext-cas,代码行数:19,代码来源:ProxyGrantingTicket.java


示例11: TicketIdentifierGenerationStrategy

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Creates a new ticket ID generator.
 *
 * @param randomLength Length in characters of random part of the ticket.
 * @param prefix Ticket ID prefix (e.g. ST, PT, PGT). MUST be a URL safe string.
 */
public TicketIdentifierGenerationStrategy(
        @Positive final int randomLength,
        @Nonnull @NotEmpty final String prefix) {
    if (randomLength < 1) {
        throw new IllegalArgumentException("Length of random part of ticket must be positive");
    }
    this.randomPartGenerator = new RandomIdGenerator(randomLength);
    this.prefix = Constraint.isNotNull(StringSupport.trimOrNull(prefix), "Prefix cannot be null or empty");
    if (!isUrlSafe(this.prefix)) {
        throw new IllegalArgumentException("Unsupported prefix " + this.prefix);
    }
}
 
开发者ID:serac,项目名称:shibboleth-idp-ext-cas,代码行数:19,代码来源:TicketIdentifierGenerationStrategy.java


示例12: setSuffix

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Sets the ticket ID suffix.
 *
 * @param suffix Ticket suffix.
 */
public void setSuffix(@Nullable final String suffix) {
    final String s = StringSupport.trimOrNull(suffix);
    if (s != null) {
        if (!isUrlSafe(s)) {
            throw new IllegalArgumentException("Unsupported suffix " + s);
        }
        this.suffix = s;
    }
}
 
开发者ID:serac,项目名称:shibboleth-idp-ext-cas,代码行数:15,代码来源:TicketIdentifierGenerationStrategy.java


示例13: CASSPSession

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Creates a new CAS SP session.
 *
 * @param id         the identifier of the service associated with this session
 * @param creation   creation time of session, in milliseconds since the epoch
 * @param expiration expiration time of session, in milliseconds since the epoch
 * @param ticketId   ticket ID used to gain access to the service
 */
public CASSPSession(
        @Nonnull @NotEmpty String id,
        @Duration @Positive long creation,
        @Duration @Positive long expiration,
        @Nonnull @NotEmpty String ticketId) {
    super(id, creation, expiration);
    this.ticketId = Constraint.isNotNull(StringSupport.trimOrNull(ticketId), "Ticket ID cannot be null or empty");
}
 
开发者ID:serac,项目名称:shibboleth-idp-ext-cas,代码行数:17,代码来源:CASSPSession.java


示例14: Service

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Creates a new service from given URL and group name.
 *
 * @param url CAS service URL.
 * @param group Group to which service belongs.
 * @param proxy True to authorize proxying, false otherwise.
 */
public Service(
        @Nonnull @NotEmpty final String url,
        @Nullable @NotEmpty final String group,
        final boolean proxy) {
    this.serviceURL = Constraint.isNotNull(StringSupport.trimOrNull(url), "Service URL cannot be null or empty");
    this.group = StringSupport.trimOrNull(group);
    this.authorizedToProxy = proxy;
}
 
开发者ID:serac,项目名称:shibboleth-idp-ext-cas,代码行数:16,代码来源:Service.java


示例15: setAuthenticationFlows

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Set the authentication flows to use.
 * 
 * @param flows   flow identifiers to use
 */
public void setAuthenticationFlows(@Nonnull @NonnullElements final Collection<String> flows) {
    Constraint.isNotNull(flows, "Collection of flows cannot be null");
    
    authenticationFlows = new HashSet<>(StringSupport.normalizeStringCollection(flows));
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:11,代码来源:OIDCCoreProtocolConfiguration.java


示例16: setPostAuthenticationFlows

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Set the ordered collection of post-authentication interceptor flows to enable.
 * 
 * @param flows   flow identifiers to enable
 */
public void setPostAuthenticationFlows(@Nonnull @NonnullElements final Collection<String> flows) {
    Constraint.isNotNull(flows, "Collection of flows cannot be null");
    
    postAuthenticationFlows = new ArrayList<>(StringSupport.normalizeStringCollection(flows));
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:11,代码来源:OIDCCoreProtocolConfiguration.java


示例17: setNameIDFormatPrecedence

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Set the name identifier formats to use.
 * 
 * @param formats name identifier formats to use
 */
public void setNameIDFormatPrecedence(@Nonnull @NonnullElements final List<String> formats) {
    Constraint.isNotNull(formats, "List of formats cannot be null");

    nameIDFormatPrecedence = new ArrayList<>(StringSupport.normalizeStringCollection(formats));
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:11,代码来源:OIDCCoreProtocolConfiguration.java


示例18: setPgtUrl

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
public void setPgtUrl(@Nonnull final String url) {
    this.pgtUrl = StringSupport.trimOrNull(url);
}
 
开发者ID:serac,项目名称:shibboleth-idp-ext-cas,代码行数:4,代码来源:TicketValidationRequest.java


示例19: setPgtIou

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
public void setPgtIou(@Nullable final String pgtIou) {
    this.pgtIou = StringSupport.trimOrNull(pgtIou);
}
 
开发者ID:serac,项目名称:shibboleth-idp-ext-cas,代码行数:4,代码来源:TicketValidationResponse.java


示例20: setName

import net.shibboleth.utilities.java.support.primitive.StringSupport; //导入依赖的package包/类
/**
 * Set the name of the attribute.
 * 
 * @param attributeName
 *            name of the attribute
 */
public void setName(@Nonnull @NotEmpty final String attributeName) {
    ComponentSupport.ifInitializedThrowUnmodifiabledComponentException(this);
    name = Constraint.isNotNull(StringSupport.trimOrNull(attributeName), "Attribute name cannot be null or empty");
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:11,代码来源:AbstractOIDCAttributeEncoder.java



注:本文中的net.shibboleth.utilities.java.support.primitive.StringSupport类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ServiceCall类代码示例发布时间:2022-05-22
下一篇:
Java FieldUtils类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap