2 *******************************************************************
4 * Copyright 2015 Intel Corporation.
6 *-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
20 *-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
23 package org.iotivity.base.examples;
25 import android.content.Context;
30 * Refrigerator class has different objects (resources) which are instantiated when a
31 * Refrigerator object is created. Operations are performed on each of the individual resources.
33 public class Refrigerator {
34 public static final String LEFT_SIDE = "left";
35 public static final String RIGHT_SIDE = "right";
36 public static final String RANDOM_SIDE = "random";
38 private FridgeResource mFridge;
39 private LightResource mLight;
40 private DoorResource mLeftDoor;
41 private DoorResource mRightDoor;
42 private DoorResource mRandomDoor;
45 * constructor - creates resources of light and doors
47 * @param context needed by individual resources to be able to send broadcast
48 * messages to be displayed on the user screen
50 Refrigerator(Context context) {
51 mFridge = new FridgeResource(context);
52 mLight = new LightResource(context);
53 mLeftDoor = new DoorResource(LEFT_SIDE, context);
54 mRightDoor = new DoorResource(RIGHT_SIDE, context);
55 mRandomDoor = new DoorResource(RANDOM_SIDE, context);
57 mLight.bindTo(mFridge.getHandle());
58 mLeftDoor.bindTo(mFridge.getHandle());
59 mRightDoor.bindTo(mFridge.getHandle());
60 mRandomDoor.bindTo(mFridge.getHandle());