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

import org.oasisopen.sca.annotation.Remotable;

@Remotable
public interface PrecipitationService {

    String getPrecipitation();
    
}