com.minlessika.membership.integration.Features 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.io.IOException;
public interface Features {
void add(Feature item);
void remove(Feature item);
void removeAll() throws IOException;
Iterable iterate();
}