com.thecoderscorner.menu.remote.LocalIdentifier Maven / Gradle / Ivy
/*
* Copyright (c) 2016-2019 https://www.thecoderscorner.com (Nutricherry LTD).
* This product is licensed under an Apache license, see the LICENSE file in the top-level directory.
*
*/
package com.thecoderscorner.menu.remote;
import java.util.UUID;
/**
* a local identifier holder object that holds the name and UUID
*/
public class LocalIdentifier {
private final UUID uuid;
private final String name;
public LocalIdentifier(UUID uuid, String name) {
this.uuid = uuid;
this.name = name;
}
public UUID getUuid() {
return uuid;
}
public String getName() {
return name;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy