All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.stapi.graphsystem.structuredefinition.identificatorProvider.ElementDefinitionIdentificatorProvider Maven / Gradle / Ivy

package ai.stapi.graphsystem.structuredefinition.identificatorProvider;

import ai.stapi.graphoperations.synchronization.nodeIdentificator.NodeIdentificator;
import ai.stapi.graphoperations.synchronization.nodeIdentificator.NodeIdentificatorsProvider;
import java.util.List;

public class ElementDefinitionIdentificatorProvider implements NodeIdentificatorsProvider {

  @Override
  public List provide(String nodeType) {
    return List.of(
        new NodeIdentificator("path")
    );
  }

  @Override
  public boolean supports(String nodeType) {
    return nodeType.equals("ElementDefinition");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy