22 lines
897 B
C++
22 lines
897 B
C++
// Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SYSTEM_API_DBUS_AUTHPOLICY_DBUS_CONSTANTS_H_
|
|
#define SYSTEM_API_DBUS_AUTHPOLICY_DBUS_CONSTANTS_H_
|
|
|
|
namespace authpolicy {
|
|
|
|
const char kAuthPolicyInterface[] = "org.chromium.AuthPolicy";
|
|
const char kAuthPolicyServicePath[] = "/org/chromium/AuthPolicy";
|
|
const char kAuthPolicyServiceName[] = "org.chromium.AuthPolicy";
|
|
// Methods
|
|
const char kAuthPolicyAuthenticateUser[] = "AuthenticateUser";
|
|
const char kAuthPolicyGetUserStatus[] = "GetUserStatus";
|
|
const char kAuthPolicyJoinADDomain[] = "JoinADDomain";
|
|
const char kAuthPolicyRefreshUserPolicy[] = "RefreshUserPolicy";
|
|
const char kAuthPolicyRefreshDevicePolicy[] = "RefreshDevicePolicy";
|
|
|
|
} // namespace authpolicy
|
|
|
|
#endif // SYSTEM_API_DBUS_AUTHPOLICY_DBUS_CONSTANTS_H_
|