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

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

    public BooleanAttribute(String name) {
        super(name);
        dfAttributeType = 0;
    }

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy