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

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

    public LongAttribute(String name) {
        super(name);
        dfAttributeType = 5;
    }

    @Override
    public Long getValue(Object o) throws DfException {
        return ((IDfTypedObject) o).getLong(name);

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy