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

ai.stapi.graphoperations.synchronization.nodeIdentificator.DefaultUuidIdentityIdentificatorProvider Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ai.stapi.graphoperations.synchronization.nodeIdentificator;

import ai.stapi.graphoperations.graphLanguage.graphDescription.specific.positive.UuidIdentityDescription;
import java.util.List;

public class DefaultUuidIdentityIdentificatorProvider implements NodeIdentificatorsProvider {
    
    @Override
    public List provide(String nodeType) {
        return List.of(
            new NodeIdentificator(new UuidIdentityDescription())
        );
    }

    @Override
    public boolean supports(String nodeType) {
        return true;
    }

    @Override
    public int priority() {
        return NodeIdentificatorsProvider.MAX_PRIORITY;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy