KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws643 > ResearchServiceImpl


1 package org.jboss.test.webservice.jbws643;
2
3 import org.jboss.logging.Logger;
4
5 public class ResearchServiceImpl implements ResearchService
6 {
7    private Logger log = Logger.getLogger(ResearchServiceImpl.class);
8
9    public GetKeywordsBySubphraseResponse getKeywordsBySubphrase(GetKeywordsBySubphraseRequest getKeywordsBySubphraseRequest)
10    {
11       GetKeywordsBySubphraseResponse retObj = null;
12       return retObj;
13    }
14
15    public GetKeywordStatisticsResponse getKeywordStatistics(GetKeywordStatisticsRequest getKeywordStatisticsRequest)
16    {
17       log.debug("getKeywordStatistics: " + getKeywordStatisticsRequest);
18       
19       KeywordDetailType kdt1 = new KeywordDetailType();
20       kdt1.setSearches(new Long JavaDoc(1));
21       KeywordDetailType kdt2 = new KeywordDetailType();
22       kdt2.setSearches(new Long JavaDoc(2));
23       GetKeywordStatisticsResponse retObj = new GetKeywordStatisticsResponse(new KeywordDetailType[] { kdt1, kdt2 });
24       return retObj;
25    }
26
27    public GetKeywordMonthlyReportResponse getKeywordMonthlyReport(GetKeywordMonthlyReportRequest getKeywordMonthlyReportRequest)
28    {
29       GetKeywordMonthlyReportResponse retObj = null;
30       return retObj;
31    }
32
33    public GetCanonicalizationResponse getCanonicalization(GetCanonicalizationRequest getCanonicalizationRequest)
34    {
35       GetCanonicalizationResponse retObj = null;
36       return retObj;
37    }
38 }
39
Popular Tags