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

com.minlessika.membership.integration.MeasureUnit 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.UUID;

public interface MeasureUnit {
	
	UUID id();
	
	String shortname();
	
	String fullName();
	
	MeasureUnitType type();
	
	void update(String shortName, String fullName, MeasureUnitType type);

	MeasureUnit EMPTY = new MeasureUnit() {

		@Override
		public UUID id() {
			return null;
		}

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

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

		@Override
		public MeasureUnitType type() {
			return null;
		}

		@Override
		public void update(String shortName, String fullName, MeasureUnitType type) {

		}
	};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy