本文整理汇总了Java中org.apache.commons.lang3.builder.ToStringStyle.SHORT_PREFIX_STYLE属性的典型用法代码示例。如果您正苦于以下问题:Java ToStringStyle.SHORT_PREFIX_STYLE属性的具体用法?Java ToStringStyle.SHORT_PREFIX_STYLE怎么用?Java ToStringStyle.SHORT_PREFIX_STYLE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.apache.commons.lang3.builder.ToStringStyle
的用法示例。
在下文中一共展示了ToStringStyle.SHORT_PREFIX_STYLE属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: toString
@Override
public String toString() {
final ToStringBuilder toStringBuilder = new ToStringBuilder(null, ToStringStyle.SHORT_PREFIX_STYLE);
toStringBuilder.append("id", this.id);
toStringBuilder.append("name", this.name);
toStringBuilder.append("description", this.description);
toStringBuilder.append("serviceId", this.serviceId);
toStringBuilder.append("usernameAttributeProvider", this.usernameAttributeProvider);
toStringBuilder.append("theme", this.theme);
toStringBuilder.append("evaluationOrder", this.evaluationOrder);
toStringBuilder.append("logoutType", this.logoutType);
toStringBuilder.append("attributeReleasePolicy", this.attributeReleasePolicy);
toStringBuilder.append("accessStrategy", this.accessStrategy);
toStringBuilder.append("publicKey", this.publicKey);
toStringBuilder.append("proxyPolicy", this.proxyPolicy);
toStringBuilder.append("logo", this.logo);
toStringBuilder.append("logoutUrl", this.logoutUrl);
toStringBuilder.append("requiredHandlers", this.requiredHandlers);
toStringBuilder.append("properties", this.properties);
return toStringBuilder.toString();
}
示例2: toString
@Override
public String toString() {
final ToStringBuilder toStringBuilder = new ToStringBuilder(null, ToStringStyle.SHORT_PREFIX_STYLE);
toStringBuilder.append("id", this.id);
toStringBuilder.append("name", this.name);
toStringBuilder.append("description", this.description);
toStringBuilder.append("serviceId", this.serviceId);
toStringBuilder.append("usernameAttributeProvider", this.usernameAttributeProvider);
toStringBuilder.append("theme", this.theme);
toStringBuilder.append("evaluationOrder", this.evaluationOrder);
toStringBuilder.append("logoutType", this.logoutType);
toStringBuilder.append("attributeReleasePolicy", this.attributeReleasePolicy);
toStringBuilder.append("accessStrategy", this.accessStrategy);
toStringBuilder.append("publicKey", this.publicKey);
toStringBuilder.append("proxyPolicy", this.proxyPolicy);
toStringBuilder.append("logo", this.logo);
toStringBuilder.append("logoutUrl", this.logoutUrl);
toStringBuilder.append("requiredHandlers", this.requiredHandlers);
return toStringBuilder.toString();
}
示例3: toString
@Override
public String toString() {
final ToStringBuilder toStringBuilder = new ToStringBuilder(null, ToStringStyle.SHORT_PREFIX_STYLE);
toStringBuilder.append("id", this.id);
toStringBuilder.append("name", this.name);
toStringBuilder.append("description", this.description);
toStringBuilder.append("serviceId", this.serviceId);
toStringBuilder.append("usernameAttributeProvider", this.usernameAttributeProvider);
toStringBuilder.append("theme", this.theme);
toStringBuilder.append("evaluationOrder", this.evaluationOrder);
toStringBuilder.append("logoutType", this.logoutType);
toStringBuilder.append("attributeReleasePolicy", this.attributeReleasePolicy);
toStringBuilder.append("accessStrategy", this.accessStrategy);
toStringBuilder.append("publicKey", this.publicKey);
toStringBuilder.append("proxyPolicy", this.proxyPolicy);
toStringBuilder.append("logo", this.logo);
toStringBuilder.append("logoutUrl", this.logoutUrl);
toStringBuilder.append("requiredHandlers", this.requiredHandlers);
toStringBuilder.append("properties", this.properties);
toStringBuilder.append("multifactorPolicy", this.multifactorPolicy);
toStringBuilder.append("informationUrl", this.informationUrl);
toStringBuilder.append("privacyUrl", this.privacyUrl);
return toStringBuilder.toString();
}
示例4: toString
@Override
public String toString() {
final ToStringBuilder toStringBuilder = new ToStringBuilder(null, ToStringStyle.SHORT_PREFIX_STYLE);
toStringBuilder.append("usernameAttribute", this.usernameAttribute);
return toStringBuilder.toString();
}
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:6,代码来源:PrincipalAttributeRegisteredServiceUsernameProvider.java