org.wso2.carbon.identity.application.common.model.Property.setType()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(10.1k)|赞(0)|评价(0)|浏览(82)

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

Property.setType介绍

暂无

代码示例

代码示例来源:origin: org.wso2.carbon.identity/org.wso2.carbon.identity.application.common

property.setDisplayOrder(Integer.parseInt(element.getText()));
} else if ("Type".equals(elementName)) {
  property.setType(element.getText());

代码示例来源:origin: wso2/carbon-identity-framework

property.setDisplayOrder(Integer.parseInt(element.getText()));
} else if ("Type".equals(elementName)) {
  property.setType(element.getText());
} else if ("IsAdvanced".equals(elementName)) {
  if (element.getText() != null && element.getText().trim().length() > 0) {

代码示例来源:origin: wso2/carbon-identity-framework

Property.setType(propertyType);

代码示例来源:origin: org.wso2.carbon.extension.identity.authenticator/org.wso2.carbon.extension.identity.sso.cas

@Override
public Property[] getConfigurationProperties() {
  Property appType = new Property();
  appType.setName(IdentityConstants.ServerConfig.WELLKNOWN_APPLICATION_TYPE);
  appType.setType("hidden");
  appType.setValue(getConfigName());
  appType.setDisplayName(IdentityConstants.ServerConfig.WELLKNOWN_APPLICATION_TYPE);
  Property service = new Property();
  service.setName(CASSSOConstants.SERVICE_PROVIDER_ARGUMENT);
  service.setDisplayName(CASSSOConstants.CAS_SERVICE_URL);
  return new Property[]{appType, service};
}

代码示例来源:origin: org.wso2.carbon.identity/org.wso2.carbon.identity.application.mgt

if (mappedProperty != null) {
  prop.setDisplayName(mappedProperty.getDisplayName());
  prop.setType(mappedProperty.getType());

代码示例来源:origin: wso2/carbon-identity-framework

property.setDisplayOrder(source.getDisplayOrder());
property.setRequired(source.isRequired());
property.setType(source.getType());

代码示例来源:origin: org.wso2.carbon.identity.inbound.auth.saml.cloud/org.wso2.carbon.identity.sso.saml.cloud

appType.setType("hidden");
appType.setValue(getConfigName());
appType.setDisplayName("UI Config Type");
acsurls.setType("hidden");
acsurls.setValue("https://signin.aws.amazon.com/saml");
acsurls.setDisplayName("Assertion Consumer URLs");
defaultacs.setType("hidden");
defaultacs.setValue("https://signin.aws.amazon.com/saml");
defaultacs.setDisplayName("Default Assertion Consumer URL");
nameid.setName(SAMLSSOConstants.SAMLFormFields.NAME_ID_FORMAT);
nameid.setDisplayName("NameID format ");
nameid.setType("hidden");
metadata.setType("hidden");
signAlgo.setDisplayName("Response Signing Algorithm ");
signAlgo.setValue("http://www.w3.org/2000/09/xmldsig#rsa-sha1");
signAlgo.setType("hidden");
digestAlgo.setDisplayName("Response Digest Algorithm ");
digestAlgo.setValue("http://www.w3.org/2000/09/xmldsig#sha1");
digestAlgo.setType("hidden");
enableSign.setDisplayName("Enable Response Signing");
enableSign.setValue("false");
enableSign.setType("hidden");

代码示例来源:origin: org.wso2.carbon.identity.inbound.auth.saml.cloud/org.wso2.carbon.identity.sso.saml.cloud

appType.setType("hidden");
appType.setValue(getConfigName());
appType.setDisplayName("UI Config Type");
acsurls.setDisplayName("Assertion Consumer URLs");
acsurls.setDescription("The url where you should redirected after authenticated.");
acsurls.setType("hidden");
acsindex.setType("hidden");
defaultacs.setValue("https://www.concursolutions.com/SAMLRedirector/ClientSAMLLogin.aspx");
defaultacs.setDisplayName("Default Assertion Consumer URL");
defaultacs.setType("hidden");
nameid.setValue("urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified");
nameid.setDisplayName("NameID format ");
nameid.setType("hidden");
alias.setName(SAMLSSOConstants.SAMLFormFields.ALIAS);
alias.setDisplayName("Certificate Alias");
alias.setType("hidden");
metadata.setType("hidden");
signAlgo.setDisplayName("Response Signing Algorithm ");
signAlgo.setValue("http://www.w3.org/2000/09/xmldsig#rsa-sha1");
signAlgo.setType("hidden");
digestAlgo.setDisplayName("Response Digest Algorithm ");

代码示例来源:origin: org.wso2.carbon.identity.inbound.auth.saml.cloud/org.wso2.carbon.identity.sso.saml.cloud

appType.setType("hidden");
appType.setValue(getConfigName());
appType.setDisplayName("UI Config Type");
acsindex.setType("hidden");
defaultacs.setValue("https://system.na1.netsuite.com/saml2/acs");
defaultacs.setDisplayName("Default Assertion Consumer URL");
defaultacs.setType("hidden");
nameid.setType("hidden");
alias.setName(SAMLSSOConstants.SAMLFormFields.ALIAS);
alias.setDisplayName("Certificate Alias");
alias.setType("hidden");
metadata.setType("hidden");
signAlgo.setDisplayName("Response Signing Algorithm ");
signAlgo.setValue("http://www.w3.org/2000/09/xmldsig#rsa-sha1");
signAlgo.setType("hidden");
digestAlgo.setDisplayName("Response Digest Algorithm ");
digestAlgo.setValue("http://www.w3.org/2000/09/xmldsig#sha1");
digestAlgo.setType("hidden");
enableSign.setDisplayName("Enable Response Signing");
enableSign.setValue("false");
enableSign.setType("hidden");

代码示例来源:origin: org.wso2.carbon.identity.inbound.auth.saml.cloud/org.wso2.carbon.identity.sso.saml.cloud

appType.setType("hidden");
appType.setValue(getConfigName());
appType.setDisplayName("UI Config Type");
nameid.setName(SAMLSSOConstants.SAMLFormFields.NAME_ID_FORMAT);
nameid.setDisplayName("NameID format ");
nameid.setType("hidden");
metadata.setType("hidden");
alias.setName(SAMLSSOConstants.SAMLFormFields.ALIAS);
alias.setDisplayName("Certificate Alias");
alias.setType("hidden");
signAlgo.setDisplayName("Response Signing Algorithm ");
signAlgo.setValue("http://www.w3.org/2000/09/xmldsig#rsa-sha1");
signAlgo.setType("hidden");
digestAlgo.setDisplayName("Response Digest Algorithm ");
digestAlgo.setValue("http://www.w3.org/2000/09/xmldsig#sha1");
digestAlgo.setType("hidden");
enableSign.setDisplayName("Enable Response Signing");
enableSign.setValue("false");
enableSign.setType("hidden");
    "Requests");
enableSigValidation.setValue("false");
enableSigValidation.setType("hidden");

代码示例来源:origin: org.wso2.carbon.identity.inbound.auth.saml.cloud/org.wso2.carbon.identity.sso.saml.cloud

appType.setType("hidden");
appType.setValue(getConfigName());
appType.setDisplayName("UI Config Type");
enableAtrProf.setDisplayName("Enable Attribute Profile ");
enableAtrProf.setValue("true");
enableAtrProf.setType("hidden");
enableDefaultAtrProf.setDisplayName("Include Attributes in the Response Always ");
enableDefaultAtrProf.setValue("true");
enableDefaultAtrProf.setType("hidden");
metadata.setType("hidden");
acsindex.setType("hidden");
acsindex.setDisplayName("Assertion Consumer Service Index");
try {
nameid.setType("hidden");
nameid.setDisplayName("NameID format ");
alias.setType("hidden");
alias.setDisplayName("Certificate Alias");
signAlgo.setType("hidden");
signAlgo.setDisplayName("Response Signing Algorithm ");
signAlgo.setValue("http://www.w3.org/2000/09/xmldsig#rsa-sha1");
digestAlgo.setType("hidden");

代码示例来源:origin: org.wso2.carbon.identity.inbound.auth.saml.cloud/org.wso2.carbon.identity.sso.saml.cloud

appType.setType("hidden");
appType.setValue(getConfigName());
appType.setDisplayName("UI Config Type");
acsindex.setType("hidden");
nameid.setName(SAMLSSOConstants.SAMLFormFields.NAME_ID_FORMAT);
nameid.setDisplayName("NameID format ");
nameid.setType("hidden");
nameid.setType("hidden");
alias.setName(SAMLSSOConstants.SAMLFormFields.ALIAS);
alias.setDisplayName("Certificate Alias");
alias.setType("hidden");
metadata.setType("hidden");
signAlgo.setDisplayName("Response Signing Algorithm ");
signAlgo.setValue("http://www.w3.org/2000/09/xmldsig#rsa-sha1");
signAlgo.setType("hidden");
digestAlgo.setDisplayName("Response Digest Algorithm ");
digestAlgo.setValue("http://www.w3.org/2000/09/xmldsig#sha1");
digestAlgo.setType("hidden");
enableSign.setDisplayName("Enable Response Signing");
enableSign.setValue("true");
enableSign.setType("hidden");

代码示例来源:origin: org.wso2.carbon.identity.inbound.auth.saml.cloud/org.wso2.carbon.identity.sso.saml.cloud

appType.setType("hidden");
appType.setValue(getConfigName());
appType.setDisplayName("UI Config Type");
nameid.setName(SAMLSSOConstants.SAMLFormFields.NAME_ID_FORMAT);
nameid.setDisplayName("NameID format ");
nameid.setType("hidden");
alias.setType("hidden");
metadata.setName(SAMLSSOConstants.SAMLFormFields.METADATA);
metadata.setDisplayName("Metadata File");
metadata.setType("hidden");
signAlgo.setDisplayName("Response Signing Algorithm ");
signAlgo.setValue("http://www.w3.org/2000/09/xmldsig#rsa-sha1");
signAlgo.setType("hidden");
digestAlgo.setDisplayName("Response Digest Algorithm ");
digestAlgo.setValue("http://www.w3.org/2000/09/xmldsig#sha1");
digestAlgo.setType("hidden");
enableAssertionSigned.setDisplayName("Enable Assertion Signing ");
enableAssertionSigned.setValue("true");
enableAssertionSigned.setType("hidden");
enableDefaultAtrProf.setDisplayName("Include Attributes in the Response Always ");
enableDefaultAtrProf.setValue("true");
enableDefaultAtrProf.setType("hidden");

相关文章