本文整理汇总了Java中org.osiam.resources.scim.X509Certificate.Type方法的典型用法代码示例。如果您正苦于以下问题:Java X509Certificate.Type方法的具体用法?Java X509Certificate.Type怎么用?Java X509Certificate.Type使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.osiam.resources.scim.X509Certificate
的用法示例。
在下文中一共展示了X509Certificate.Type方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: convertToDatabaseColumn
import org.osiam.resources.scim.X509Certificate; //导入方法依赖的package包/类
@Override
public String convertToDatabaseColumn(X509Certificate.Type attribute) {
if (attribute == null || Strings.isNullOrEmpty(attribute.getValue())) {
return null;
}
return attribute.getValue();
}
示例2: convertToEntityAttribute
import org.osiam.resources.scim.X509Certificate; //导入方法依赖的package包/类
@Override
public X509Certificate.Type convertToEntityAttribute(String dbData) {
if (Strings.isNullOrEmpty(dbData)) {
return null;
}
return new X509Certificate.Type(dbData);
}
示例3: getType
import org.osiam.resources.scim.X509Certificate; //导入方法依赖的package包/类
public X509Certificate.Type getType() {
return type;
}
示例4: setType
import org.osiam.resources.scim.X509Certificate; //导入方法依赖的package包/类
public void setType(X509Certificate.Type type) {
this.type = type;
}