1/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.weave;
18
19import android.weave.IWeaveClient;
20import android.weave.IWeaveServiceManagerNotificationListener;
21
22interface IWeaveServiceManager {
23  oneway void connect(in IWeaveClient client);
24  oneway void registerNotificationListener(
25      in IWeaveServiceManagerNotificationListener listener);
26
27  String getCloudId();
28  String getDeviceId();
29  String getDeviceName();
30  String getDeviceDescription();
31  String getDeviceLocation();
32  String getOemName();
33  String getModelName();
34  String getModelId();
35  String getPairingSessionId();
36  String getPairingMode();
37  String getPairingCode();
38  String getState();
39  String getTraits();
40  String getComponents();
41}
42