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

io.github.dronesecurity.userapplication.infrastructure.user.UserConstants Maven / Gradle / Ivy

/*
 * 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.infrastructure.user;

/**
 * User related strings.
 */
public final class UserConstants {

    /**
     * Key for the username.
     */
    public static final String USERNAME = "username";

    /**
     * Key for the password.
     */
    public static final String PASSWORD = "password";

    /**
     * Key for the supervisor.
     */
    public static final String SUPERVISOR = "supervisor";

    /**
     * Key for the role.
     */
    public static final String ROLE = "role";

    /**
     * Key for the drone identifiers.
     */
    public static final String DRONES = "drones";

    private UserConstants() { }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy