Im/Exporter for SciProject

pull/1/head
Jens Pelzetter 2019-12-23 11:38:44 +01:00
parent 40ed8871b2
commit ad0ab3a1e8
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.scientificcms.contenttypes.sciproject;
import org.libreccm.imexport.Processes;
import org.librecms.contentsection.AbstractContentItemImExporter;
import javax.enterprise.context.RequestScoped;
/**
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
@RequestScoped
@Processes(SciProject.class)
public class SciProjectImExporter extends AbstractContentItemImExporter<SciProject>{
@Override
protected Class<SciProject> getEntityClass() {
return SciProject.class;
}
}