blob: ee0be24bf687874baad740ef635129b2cf4622bd [file] [log] [blame]
Francesco Furfariec7e1752006-10-02 13:37:04 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
Francesco Furfarid1072b52006-05-03 07:44:48 +00009 *
Francesco Furfariec7e1752006-10-02 13:37:04 +000010 * http://www.apache.org/licenses/LICENSE-2.0
Francesco Furfarid1072b52006-05-03 07:44:48 +000011 *
Francesco Furfariec7e1752006-10-02 13:37:04 +000012 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
Francesco Furfarid1072b52006-05-03 07:44:48 +000018 */
19
20package org.apache.felix.upnp.sample.binaryLight;
21
22import java.util.Dictionary;
23import java.util.Hashtable;
24
25import org.osgi.service.upnp.UPnPAction;
26import org.osgi.service.upnp.UPnPStateVariable;
27
28/*
Karl Paulsd312acc2007-06-18 20:38:33 +000029* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
Francesco Furfarid1072b52006-05-03 07:44:48 +000030*/
31
32public class GetTargetAction implements UPnPAction {
33
34 final private String NAME = "GetTarget";
35 final private String RET_TARGET_VALUE = "RetTargetValue";
36 final private String[] OUT_ARG_NAMES = new String[]{RET_TARGET_VALUE};
37 private UPnPStateVariable state;
38 private LightModel model;
39
40
41 public GetTargetAction(LightModel model,UPnPStateVariable state){
42 this.state = state;
43 this.model=model;
44 }
45
46 /* (non-Javadoc)
47 * @see org.osgi.service.upnp.UPnPAction#getName()
48 */
49 public String getName() {
50 return NAME;
51 }
52
53 /* (non-Javadoc)
54 * @see org.osgi.service.upnp.UPnPAction#getReturnArgumentName()
55 */
56 public String getReturnArgumentName() {
57 return null;
58 }
59
60 /* (non-Javadoc)
61 * @see org.osgi.service.upnp.UPnPAction#getInputArgumentNames()
62 */
63 public String[] getInputArgumentNames() {
64
65 return null;
66 }
67
68 /* (non-Javadoc)
69 * @see org.osgi.service.upnp.UPnPAction#getOutputArgumentNames()
70 */
71 public String[] getOutputArgumentNames() {
72 return OUT_ARG_NAMES;
73 }
74
75 /* (non-Javadoc)
76 * @see org.osgi.service.upnp.UPnPAction#getStateVariable(java.lang.String)
77 */
78 public UPnPStateVariable getStateVariable(String argumentName) {
79 return state;
80 }
81
82 /* (non-Javadoc)
83 * @see org.osgi.service.upnp.UPnPAction#invoke(java.util.Dictionary)
84 */
85 public Dictionary invoke(Dictionary args) throws Exception {
86 boolean target = model.getTarget();
87 Hashtable result = new Hashtable();
88 result.put(RET_TARGET_VALUE,new Boolean(target));
89 return result;
90 }
91}