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

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";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy