gpt4 book ai didi

org.opensaml.xml.schema.XSBooleanValue.getValue()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 11:43:05 26 4
gpt4 key购买 nike

本文整理了Java中org.opensaml.xml.schema.XSBooleanValue.getValue()方法的一些代码示例,展示了XSBooleanValue.getValue()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSBooleanValue.getValue()方法的具体详情如下:
包路径:org.opensaml.xml.schema.XSBooleanValue
类名称:XSBooleanValue
方法名:getValue

XSBooleanValue.getValue介绍

[英]Gets the boolean value.
[中]获取布尔值。

代码示例

代码示例来源:origin: cloudfoundry/uaa

} else if (xmlObject instanceof XSBoolean) {
  XSBooleanValue b =  ((XSBoolean)xmlObject).getValue();
  value = b!=null && b.getValue()!=null ? b.getValue().toString() : null;
} else if (xmlObject instanceof XSDateTime) {
  DateTime d =  ((XSDateTime)xmlObject).getValue();

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isPassive() {
  if (isPassive != null) {
    return isPassive.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isInputContextOnly() {
  if (inputContextOnly != null) {
    return inputContextOnly.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isReturnContext() {
  if (returnContext != null) {
    return returnContext.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isSOAP11MustUnderstand() {
  if (soap11MustUnderstand != null) {
    return soap11MustUnderstand.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: edu.internet2.middleware/shibboleth-common

/** {@inheritDoc} */
public Boolean getRegexp() {
  if (regexp == null) {
    return Boolean.FALSE;
  }
  return regexp.getValue();
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isSOAP11MustUnderstand() {
  if (soap11MustUnderstand != null) {
    return soap11MustUnderstand.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.springframework.security.extensions/spring-security-saml2-core

/** {@inheritDoc} */
public Boolean isSOAP11MustUnderstand() {
  if (soap11MustUnderstand != null) {
    return soap11MustUnderstand.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isSOAP11MustUnderstand() {
  if (soap11MustUnderstand != null) {
    return soap11MustUnderstand.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isSOAP11MustUnderstand() {
  if (soap11MustUnderstand != null) {
    return soap11MustUnderstand.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isSOAP11MustUnderstand() {
  if (soap11MustUnderstand != null) {
    return soap11MustUnderstand.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean getMustBePresent() {
if (mustBePresentXS != null) {
  return mustBePresentXS.getValue();
}
return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean getWantAssertionsSigned() {
  if (wantAssertionsSigned != null) {
    return wantAssertionsSigned.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isSOAP11MustUnderstand() {
  if (soap11MustUnderstand != null) {
    return soap11MustUnderstand.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isRequired(){
  if(isRequired != null){
    return isRequired.getValue();
  }
  
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isForceAuthn() {
  if (forceAuthn != null) {
    return forceAuthn.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isSOAP11MustUnderstand() {
  if (soap11MustUnderstand != null) {
    return soap11MustUnderstand.getValue();
  }
  return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean isCombinePolicies() {
  if (combinePolicies != null) {
    return combinePolicies.getValue();
  }
  return Boolean.TRUE;
}

代码示例来源:origin: org.opensaml/opensaml

/** {@inheritDoc} */
public Boolean getMustBePresent() {
if (mustBePresentXS != null) {
  return mustBePresentXS.getValue();
}
return Boolean.FALSE;
}

代码示例来源:origin: org.opensaml/xmltooling

/** {@inheritDoc} */
public Boolean isNil() {
  if (nil != null) {
    return nil.getValue();
  }
  return Boolean.FALSE;
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com