contentservicelocal.java
来自「EJB3 Annotation Sample」· Java 代码 · 共 43 行
JAVA
43 行
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.s7turn.content.session;import com.s7turn.common.CommonService;import com.s7turn.content.entities.Category;import com.s7turn.content.entities.Channel;import com.s7turn.content.entities.Content;import com.s7turn.content.entities.Directory;import com.s7turn.content.entities.SubCategory;import com.s7turn.sdk.content.ContentInfo;import java.util.List;import javax.ejb.Local;import java.util.Map;/** * * @author Long */@Localpublic interface ContentServiceLocal extends CommonService<Content>{ /** * Load content by viewId and should check the request context */ ContentInfo loadContent( String viewId, String requestLocale ); /** * Load the Inline page's content from database. which content will can be updated by manual. */ Map loadInlineContent( String viewId, String requestLocale ); List getContents( Directory dir ); List getContents( Channel chn ); List getContents( Channel chn, Category cate ); List getContents( Channel chn, Category cate, SubCategory sub ); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?