org.bigraphs.spring.data.cdo.CdoWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-cdo Show documentation
Show all versions of spring-data-cdo Show documentation
CDO support for Spring Data
The newest version!
package org.bigraphs.spring.data.cdo;
import org.eclipse.emf.ecore.EObject;
import org.springframework.data.convert.EntityWriter;
/**
* A {@link CdoWriter} is responsible for converting an object of type T to the native CDO representation CDOObject.
*
* @author Dominik Grzelak
*/
public interface CdoWriter extends EntityWriter {
@Override
void write(T t, EObject ePackage);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy