- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.fetchNames()
方法的一些代码示例,展示了YModelUtils.fetchNames()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YModelUtils.fetchNames()
方法的具体详情如下:
包路径:pl.edu.icm.synat.logic.model.utils.YModelUtils
类名称:YModelUtils
方法名:fetchNames
暂无
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-api
public static String getContributorNameForSort(YContributor contributor) {
String name = fetchNames(contributor);
final String surname = fetchSurname(contributor);
if (StringUtils.isNotEmpty(surname) && StringUtils.isNotEmpty(name)) {
return UserProfileUtils.createNameForSorting(name, surname);
}
return getDefaultContributor(contributor);
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-api
/**
* Utility function retrieving name of YContributor
*
* @param contributor
* @return concatenation of NM_SURNAME and NM_FORENAMES names separated with
* ", "
*/
public static String getDefaultContributor(YContributor contributor) {
String name = fetchNames(contributor);
final String surname = fetchSurname(contributor);
if (StringUtils.isNotEmpty(surname) && StringUtils.isNotEmpty(name)) {
return UserProfileUtils.createFullName(name, surname);
}
return getDefaultName(contributor);
}
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
public ResourceContributor transformYContributorToResourceContributor(final String documentId, YContributor contributor) {
String forenames = YModelUtils.fetchNames(contributor);
String surname = YModelUtils.fetchSurname(contributor);
Integer contributorId = BwmetaContributorUtils.getContributorId(contributor);
final boolean hasSuggestion = fetchHasSuggestions(documentId, contributorId);
String identity = BwmetaContributorUtils.getContributorIdentity(contributor);
ResourceContributor resourceContributor = new ResourceContributor(contributorId, identity, hasSuggestion).setAffiliationIds(contributor
.getAffiliationRefs());
if (StringUtils.isNotBlank(identity)) {
resourceContributor.setThumbnailPath(thumbnailService.resolveUserAvatar(identity));
resourceContributor.setCurrentId(identity);
}
final String canonicalName = YModelUtils.getCanonicalName(contributor);
if (StringUtils.isNotBlank(forenames) && StringUtils.isNotBlank(surname)) {
resourceContributor.setForenames(forenames).setSurname(surname);
if (StringUtils.isBlank(canonicalName)) {
resourceContributor.setCanonicalName(UserProfileUtils.createFullName(forenames, surname));
}
} else if (StringUtils.isBlank(canonicalName)) {
resourceContributor.setCanonicalName(YModelUtils.getDefaultName(contributor));
}
if (StringUtils.isNotBlank(canonicalName)) {
resourceContributor.setCanonicalName(canonicalName);
}
return resourceContributor;
}
代码示例来源:origin: pl.edu.icm.synat/synat-process-common
String surname = YModelUtils.fetchSurname(contributor);
indexDocument.setSurname(StringUtils.trim(surname));
String name = YModelUtils.fetchNames(contributor);
indexDocument.setName(StringUtils.trim(name));
if (StringUtils.isBlank(indexDocument.getName()) && StringUtils.isBlank(indexDocument.getSurname())) {
我在使用 data[i] 检查字符串时遇到语法错误 String data; // has value ArrayList byteArr = txfCheck.getFilterByteArray(
本文整理了Java中pl.edu.icm.synat.logic.repository.YElementEnricher类的一些代码示例,展示了YElementEnricher类的具体用法。这些代码示
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils类的一些代码示例,展示了YModelUtils类的具体用法。这些代码示例主要来源于Git
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelPropertyExtractor类的一些代码示例,展示了YModelPropertyExtrac
本文整理了Java中pl.edu.icm.synat.logic.repository.YElementEnricher.enrich()方法的一些代码示例,展示了YElementEnricher.e
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.getNameByType()方法的一些代码示例,展示了YModelUtils.get
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.getDefaultDescription()方法的一些代码示例,展示了YModelU
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.fetchDefaultName()方法的一些代码示例,展示了YModelUtils.
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.fetchSurname()方法的一些代码示例,展示了YModelUtils.fetc
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.yRichTextToString()方法的一些代码示例,展示了YModelUtils
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.fetchNames()方法的一些代码示例,展示了YModelUtils.fetchN
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.getDefaultName()方法的一些代码示例,展示了YModelUtils.ge
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelUtils.getDefaultContributor()方法的一些代码示例,展示了YModelU
本文整理了Java中pl.edu.icm.synat.logic.model.utils.YModelPropertyExtractor.extractThumbnailPath()方法的一些代码示例
我是一名优秀的程序员,十分优秀!