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

com.emc.documentum.springdata.entitymanager.attributes.IterableAttribute Maven / Gradle / Ivy

The newest version!
package com.emc.documentum.springdata.entitymanager.attributes;

import java.util.List;

import com.documentum.fc.client.IDfSysObject;
import com.documentum.fc.common.DfException;

public abstract class IterableAttribute extends Attribute {
	
	public IterableAttribute(String name) {
	       super(name);
	}
	 
	public abstract void setValue(IDfSysObject dctmObject, List valueToSet) throws DfException;

}