Package components

Source Code of components.NewsService

/*
*  Copyright Beijing 58 Information Technology Co.,Ltd.
*
*  Licensed to the Apache Software Foundation (ASF) under one
*  or more contributor license agreements.  See the NOTICE file
*  distributed with this work for additional information
*  regarding copyright ownership.  The ASF licenses this file
*  to you under the Apache License, Version 2.0 (the
*  "License"); you may not use this file except in compliance
*  with the License.  You may obtain a copy of the License at
*
*        http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing,
*  software distributed under the License is distributed on an
*  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
*  KIND, either express or implied.  See the License for the
*  specific language governing permissions and limitations
*  under the License.
*/
package components;

import entity.News;
import java.util.List;
import java.util.ArrayList;
import contract.INewsService;
import com.bj58.spat.gaea.server.contract.annotation.ServiceBehavior;

/**
* 对外提供服务接口实现类
*
* @ServiceBehavior 标记该类对外提供服务,服务契约为INewsService
*
* @author @author Service Platform Architecture Team (spat@58.com)
*/
@ServiceBehavior
public class NewsService implements INewsService {

  @Override
  public News getNewsByID(int newsID) throws Exception {
    return NewsService.getNews();
  }

  @Override
  public List<News> getNewsByCateID() throws Exception {
    List<News> list = new ArrayList<News>();
    list.add(NewsService.getNews());
    return list;
  }

  private static News getNews() {
    News news = new News();
    news.setNewsID(58);
    news.setTitle("58同城一个神奇的网站");
    return news;
  }
}
TOP

Related Classes of components.NewsService

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.