Package com.powsybl.cgmes.gl
Class CgmesGLImportPostProcessor
- java.lang.Object
-
- com.powsybl.cgmes.gl.CgmesGLImportPostProcessor
-
- All Implemented Interfaces:
CgmesImportPostProcessor
@AutoService(CgmesImportPostProcessor.class) public class CgmesGLImportPostProcessor extends Object implements CgmesImportPostProcessor
- Author:
- Massimo Ferraro
-
-
Constructor Summary
Constructors Constructor Description CgmesGLImportPostProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Get post processor name.void
process(Network network, TripleStore tripleStore)
Method called after all base data have been processed.
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:CgmesImportPostProcessor
Get post processor name. It has to be unique among all CGMES post-processors.- Specified by:
getName
in interfaceCgmesImportPostProcessor
- Returns:
- post processor name
-
process
public void process(Network network, TripleStore tripleStore)
Description copied from interface:CgmesImportPostProcessor
Method called after all base data have been processed. It is called one time per CGMES conversion. It is expected in this method to query triple store for additional data and to attach IIDM extensions to network.- Specified by:
process
in interfaceCgmesImportPostProcessor
- Parameters:
network
- the IIDM network modeltripleStore
- the triple store
-
-