Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 544 for private (0.25 sec)

  1. src/test/java/org/codelibs/fess/entity/ParamMapTest.java

    public class ParamMapTest extends UnitFessTestCase {
    
        private ParamMap<Object, Object> createSnakeMap() {
            final Map<Object, Object> map = new HashMap<>();
            map.put("aaa", "111");
            map.put("aaa_bbb", "222");
            map.put("aaa_bbb_ccc", "333");
            map.put("ccc.ddd", "444");
            return new ParamMap<>(map);
        }
    
        private ParamMap<Object, Object> createCamelMap() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ElevateWordToLabelDbm.java

        //                                                                           Singleton
        //                                                                           =========
        private static final ElevateWordToLabelDbm _instance = new ElevateWordToLabelDbm();
    
        private ElevateWordToLabelDbm() {
        }
    
        public static ElevateWordToLabelDbm getInstance() {
            return _instance;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java

    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    
    /**
     * @author Keiichi Watanabe
     */
    public class ApiAdminWebconfigAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminWebconfigAction.class);
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

    import org.lastaflute.web.response.StreamResponse;
    
    public class ApiAdminDictProtwordsAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminDictProtwordsAction.class);
    
        @Resource
        private ProtwordsService protwordsService;
    
        // GET /api/admin/dict/protwords/settings/{dictId}
        @Execute
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/UnsupportedSearchException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class UnsupportedSearchException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public UnsupportedSearchException(final String msg) {
            super(msg);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 871 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class SsoProcessException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SsoProcessException(final String message) {
            super(message);
        }
    
        public SsoProcessException(final String message, final Exception e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 973 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/StorageException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        public StorageException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public StorageException(final String message) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 970 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/LdapOperationException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class LdapOperationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public LdapOperationException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public LdapOperationException(final String message) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 990 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/ScriptEngineException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class ScriptEngineException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ScriptEngineException(final String message) {
            super(message);
        }
    
        public ScriptEngineException(final String message, final Throwable cause) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 986 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/SsoLoginException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class SsoLoginException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SsoLoginException(final String message) {
            super(message);
        }
    
        public SsoLoginException(final String message, final Exception e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 967 bytes
    - Viewed (0)
Back to top