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

com.emc.documentum.springdata.entitymanager.attributes.EntityCollectionAttribute 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;

/*
 * Copyright (c) 2015 EMC Corporation. All Rights Reserved.
 * EMC Confidential: Restricted Internal Distribution
 */
public class EntityCollectionAttribute extends IterableAttribute {

  public EntityCollectionAttribute(String name) {
    super(name);
  }

  @Override
  public void setValue(IDfSysObject dctmObject, List valueToSet) throws DfException {

  }

  @Override
  public T getValue(Object o) throws DfException {
    return null;
  }
}