All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emc.documentum.springdata.entitymanager.attributes.IntAttribute 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 IntAttribute extends Attribute {

    public IntAttribute(String name) {
        super(name);
        dfAttributeType = 1;
    }

    @Override
    public Integer getValue(Object o) throws DfException {
        return ((IDfTypedObject) o).getInt(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy