summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/contrib/samples/comet-webapp/src/main/java/org/apache/tuscany/sca/sample/comet/HumidityService.java
blob: 7b0d63e1b20b5e9c0797c78ec5f3e5e0133edaee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.apache.tuscany.sca.sample.comet;

import org.apache.tuscany.sca.sample.comet.model.Location;
import org.apache.tuscany.sca.sample.comet.model.Response;
import org.oasisopen.sca.annotation.Remotable;

@Remotable
public interface HumidityService {

    Response getHumidity(Location location);

}