org.opentcs.common.GuestUserCredentials Maven / Gradle / Ivy
The newest version!
// SPDX-FileCopyrightText: The openTCS Authors
// SPDX-License-Identifier: MIT
package org.opentcs.common;
/**
* Defines the credentials for a guest user account.
*/
public interface GuestUserCredentials {
/**
* The default/guest user name.
*/
String USER = "Alice";
/**
* The default/guest password.
*/
String PASSWORD = "xyz";
}