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

com.wix.restaurants.authentication.model.Namespaces Maven / Gradle / Ivy

There is a newer version: 1.12.0
Show newest version
package com.wix.restaurants.authentication.model;

public class Namespaces {
    private Namespaces() {}

    /**
     * Facebook users.
     * Identifier: Facebook user ID, e.g. "4" for Mark Zuckerberg.
     */
    public static final String facebook = "com.facebook";

    /**
     * Wix users.
     * Identifier: Wix user ID (GUID).
     */
    public static final String wix = "com.wix";

    /**
     * Wix websites.
     * Identifier: Wix site ID (GUID).
     */
    public static final String wixSites = "com.wix.sites";

    /**
     * Wix app instances.
     * Identifier: Wix instance ID (GUID).
     */
    public static final String wixInstances = "com.wix.instances";

    /**
     * Owners (customers) of a Wix Restaurants order.
     * Identifier: order ID.
     */
    public static final String wixRestaurantsOrdersOwners = "com.wix.restaurants.orders.owners";

    /**
     * Recipients of Wix Restaurants order share.
     * Identifier: order ID.
     */
    public static final String wixRestaurantsOrdersShares = "com.wix.restaurants.orders.shares";

    /**
     * Owners (customers) of a Wix Restaurants reservation.
     * Identifier: reservation ID.
     */
    public static final String wixRestaurantsReservationsOwners = "com.wix.restaurants.reservations.owners";

    /**
     * Recipients of Wix Restaurants reservation share.
     * Identifier: reservation ID.
     */
    public static final String wixRestaurantsReservationsShares = "com.wix.restaurants.reservations.shares";

    /**
     * Legacy OpenRest users.
     * Identifier: the user's email in lowercase, e.g. "[email protected]".
     */
    public static final String openrest = "com.openrest";

    /**
     * Google OpenID Connect.
     * Identifier: Google user ID (email) in lowercase, e.g. "[email protected]".
     */
    public static final String google = "com.google";

    /**
     * Phone number owners.
     * Identifier: phone number in E.164 format, e.g. "+12024561111".
     */
    public static final String phone = "tel";

    /**
     * Email address owners.
     * Identifier: email address in lowercase, e.g. "[email protected]".
     */
    public static final String email = "email";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy