Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 package com.github.rosjava.android_remocons.robot_remocon;
00035
00036
00037 import android.content.Intent;
00038
00039 import java.util.HashMap;
00040 import java.util.List;
00041
00042 import rocon_app_manager_msgs.KeyValue;
00043
00048 public class ClientAppData {
00049 public HashMap<String, String> managerData;
00050 public List<rocon_app_manager_msgs.KeyValue> appData;
00051
00052 public ClientAppData(rocon_app_manager_msgs.PairingClient clientApp) {
00053 managerData = keyValueListToMap(clientApp.getManagerData());
00054 appData = clientApp.getAppData();
00055 }
00056
00057 public Intent createIntent() {
00058 Intent intent = new Intent();
00059
00060
00061 if( managerData.get("intent-action" ) != null ) {
00062 intent.setAction(managerData.get("intent-action"));
00063 }
00064 if( managerData.get("intent-category") != null ) {
00065 intent.addCategory(managerData.get("intent-category"));
00066 }
00067 if( managerData.get("intent-type") != null ) {
00068 intent.setType(managerData.get("intent-type"));
00069 }
00070
00071
00072
00073 for (int i = 0; i < appData.size(); i++) {
00074 KeyValue kv = appData.get(i);
00075 intent.putExtra(kv.getKey(), kv.getValue());
00076 }
00077
00078 return intent;
00079 }
00080
00081 private HashMap<String, String> keyValueListToMap(List<KeyValue> kvl) {
00082 HashMap<String, String> map = new HashMap<String, String>();
00083 for (int i = 0; i < kvl.size(); i++) {
00084 KeyValue kv = kvl.get(i);
00085 map.put(kv.getKey(), kv.getValue());
00086 }
00087 return map;
00088 }
00089 }