io.github.dronesecurity.userapplication.domain.user.entities.contracts.Role Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of user-application Show documentation
Show all versions of user-application Show documentation
System able to monitor the drone and manage the security thanks to some particular sensors.
The newest version!
/*
* Copyright (c) 2021-2022, Mirko Felice & Maxim Derevyanchenko. All rights reserved.
* Licensed under the MIT license. See LICENSE file in the project root for details.
*/
package io.github.dronesecurity.userapplication.domain.user.entities.contracts;
/**
* Represents the possible roles of the {@link User}.
*/
public enum Role {
/**
* Role representing the Courier user.
*/
COURIER,
/**
* Role representing the Maintainer user.
*/
MAINTAINER
}