You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
// 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 {
|
|
|
|
// General
|
|
const char kAuthPolicyInterface[] = "org.chromium.AuthPolicy";
|
|
const char kAuthPolicyServicePath[] = "/org/chromium/AuthPolicy";
|
|
const char kAuthPolicyServiceName[] = "org.chromium.AuthPolicy";
|
|
|
|
// Methods
|
|
const char kAuthenticateUserMethod[] = "AuthenticateUser";
|
|
const char kGetUserStatusMethod[] = "GetUserStatus";
|
|
const char kGetUserKerberosFilesMethod[] = "GetUserKerberosFiles";
|
|
const char kJoinADDomainMethod[] = "JoinADDomain";
|
|
const char kRefreshUserPolicyMethod[] = "RefreshUserPolicy";
|
|
const char kRefreshDevicePolicyMethod[] = "RefreshDevicePolicy";
|
|
|
|
// Signals
|
|
const char kUserKerberosFilesChangedSignal[] = "UserKerberosFilesChanged";
|
|
|
|
} // namespace authpolicy
|
|
|
|
#endif // SYSTEM_API_DBUS_AUTHPOLICY_DBUS_CONSTANTS_H_
|