![JAR search and dependency download from the Maven repository](/logo.png)
com.emc.documentum.springdata.entitymanager.attributes.StringAttribute Maven / Gradle / Ivy
The newest version!
package com.emc.documentum.springdata.entitymanager.attributes;
import com.documentum.fc.client.IDfTypedObject;
import com.documentum.fc.common.DfException;
public class StringAttribute extends Attribute {
public StringAttribute(String name) {
super(name);
dfAttributeType = 2;
}
@Override
public String getValue(Object o) throws DfException {
return ((IDfTypedObject) o).getString(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy