com.minlessika.membership.integration.Sequences Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of membership-integration Show documentation
Show all versions of membership-integration Show documentation
It's a library to help developers to integration membership services to another project.
package com.minlessika.membership.integration;
import java.util.UUID;
public interface Sequences {
Sequence get(UUID uid);
Sequence get(String code);
Iterable iterate();
Sequence add(
String code, String name, String prefix, String suffix, int size, int step, long nextNumber
);
void delete(Sequence sequence);
boolean has(String code);
}