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

com.minlessika.membership.integration.Feature Maven / Gradle / Ivy

Go to download

It's a library to help developers to integration membership services to another project.

There is a newer version: 0.3.1
Show newest version
package com.minlessika.membership.integration;

import java.util.LinkedList;
import java.util.List;

public interface Feature {
	
	String uid();

	String name();

	String description();

	List children();

	Feature EMPTY = new Feature() {

		@Override
		public String uid() {
			return null;
		}

		@Override
		public String name() {
			return null;
		}

		@Override
		public String description() {
			return null;
		}

		@Override
		public List children() {
			return new LinkedList<>();
		}
	};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy