Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 206 for source (0.21 sec)

  1. src/main/java/org/codelibs/fess/app/service/SynonymService.java

    import org.codelibs.fess.dict.synonym.SynonymItem;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.dbflute.optional.OptionalEntity;
    
    public class SynonymService {
        @Resource
        protected DictionaryManager dictionaryManager;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<SynonymItem> getSynonymList(final String dictId, final SynonymPager synonymPager) {
            return getSynonymFile(dictId).map(file -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class KeyMatchService extends FessAppService {
    
        @Resource
        protected KeyMatchBhv keyMatchBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<KeyMatch> getKeyMatchList(final KeyMatchPager keyMatchPager) {
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class RoleTypeService {
    
        @Resource
        protected RoleTypeBhv roleTypeBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<RoleType> getRoleTypeList(final RoleTypePager roleTypePager) {
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

    import org.dbflute.optional.OptionalEntity;
    
    public class FailureUrlService {
    
        private static final Logger logger = LogManager.getLogger(FailureUrlService.class);
    
        @Resource
        protected FailureUrlBhv failureUrlBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<FailureUrl> getFailureUrlList(final FailureUrlPager failureUrlPager) {
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/DictionaryCreator.java

    package org.codelibs.fess.dict;
    
    import java.util.Base64;
    import java.util.Date;
    import java.util.regex.Pattern;
    
    import javax.annotation.Resource;
    
    import org.codelibs.fess.Constants;
    
    public abstract class DictionaryCreator {
    
        protected Pattern pattern;
    
        @Resource
        protected DictionaryManager dictionaryManager;
    
        protected DictionaryCreator(final String pattern) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict;
    
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import javax.annotation.Resource;
    
    import org.codelibs.fess.app.web.api.ApiResult;
    import org.codelibs.fess.app.web.api.admin.FessApiAdminAction;
    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.dict.DictionaryItem;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

        //                                                                           =========
        @Resource
        private LabelTypeService labelTypeService;
        @Resource
        private LabelTypePager labelTypePager;
        @Resource
        private RoleTypeService roleTypeService;
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

     * governing permissions and limitations under the License.
     */
    /**
     * @author Keiichi Watanabe
     * @author shinsuke
     */
    package org.codelibs.fess.app.web.profile;
    
    import javax.annotation.Resource;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.app.service.UserService;
    import org.codelibs.fess.app.web.base.FessSearchAction;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.base;
    
    import javax.annotation.Resource;
    import javax.servlet.ServletContext;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.exception.UserRoleLoginException;
    import org.codelibs.fess.helper.CrawlingConfigHelper;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

        //                                                                           Attribute
        //
    
        @Resource
        protected RelatedContentHelper relatedContentHelper;
    
        @Resource
        protected RelatedQueryHelper relatedQueryHelper;
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
Back to top