Im/Exporter for SciProject
parent
40ed8871b2
commit
ad0ab3a1e8
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue