com.netgrif.application.engine.elastic.service.ElasticPetriNetMappingService Maven / Gradle / Ivy
package com.netgrif.application.engine.elastic.service;
import com.netgrif.application.engine.elastic.domain.ElasticPetriNet;
import com.netgrif.application.engine.elastic.service.interfaces.IElasticPetriNetMappingService;
import com.netgrif.application.engine.petrinet.domain.PetriNet;
import org.springframework.stereotype.Service;
@Service
public class ElasticPetriNetMappingService implements IElasticPetriNetMappingService {
@Override
public ElasticPetriNet transform(PetriNet net) {
return new ElasticPetriNet(net);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy