• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2007 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 
17 package android.bordeaux.services;
18 
19 import android.bordeaux.services.StringString;
20 
21 interface IAggregatorManager {
getData(in String dataName)22     List<StringString> getData(in String dataName);
23 
24     // TODO: remove the following interfaces in production
25     // they are only used for demo purpose
getLocationClusters()26     List<String> getLocationClusters();
getTimeOfDayValues()27     List<String> getTimeOfDayValues();
getDayOfWeekValues()28     List<String> getDayOfWeekValues();
29     // use "" to disable the fake location
setFakeLocation(in String cluster)30     boolean setFakeLocation(in String cluster);
31     // use "" to disable the fake time
setFakeTimeOfDay(in String time_of_day)32     boolean setFakeTimeOfDay(in String time_of_day);
33     // use "" to disable the fake day
setFakeDayOfWeek(in String day_of_week)34     boolean setFakeDayOfWeek(in String day_of_week);
35     // return whether the service is in fake mode
36     // it's in fake mode, if any of the location, time and day is fake
getFakeMode()37     boolean getFakeMode();
38 }
39