Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 238 for API (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/SearchBody.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.api.admin.relatedcontent;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
    
        public String term;
    
        public String content;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 847 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/SearchBody.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.api.admin.labeltype;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
    
        public String name;
    
        public String value;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 840 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/FessActionDefTest.java

                    final String webPackageKeyword = getWebPackageKeyword();
                    if (!clazz.getName().contains(webPackageKeyword) ||
                    // exclude app.web.api.admin packages
                            clazz.getName().contains(".app.web.api.admin.")) {
                        return;
                    }
                    check(srcFile, clazz, webPackageKeyword);
                }
            });
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  4. pom.xml

    				<exclusion>
    					<groupId>jakarta.annotation</groupId>
    					<artifactId>jakarta.annotation-api</artifactId>
    				</exclusion>
    			</exclusions>
    		</dependency>
    		<dependency>
    			<groupId>jakarta.activation</groupId>
    			<artifactId>jakarta.activation-api</artifactId>
    			<version>${jakarta.activation.api.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>com.sun.activation</groupId>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  5. src/main/webapp/js/bootstrap.min.js.map

    'input:not([type=\"hidden\"])',\n  ACTIVE               : '.active',\n  BUTTON               : '.btn'\n}\n\nconst Event = {\n  CLICK_DATA_API      : `click${EVENT_KEY}${DATA_API_KEY}`,\n  FOCUS_BLUR_DATA_API : `focus${EVENT_KEY}${DATA_API_KEY} ` +\n                          `blur${EVENT_KEY}${DATA_API_KEY}`,\n  LOAD_DATA_API       : `load${EVENT_KEY}${DATA_API_KEY}`\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * -------------------...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jan 11 06:54:28 GMT 2020
    - 189.9K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/adminlte.min.js.map

       }\n\n        if (config === 'init') {\n          data[config]()\n        }\n      })\n    }\n  }\n\n  /**\n   * Data API\n   * ====================================================\n   */\n\n  $(window).on(Event.LOAD_DATA_API, () => {\n    $(Selector.DATA_WIDGET).each(function () {\n      Treeview._jQueryInterface.call($(this), 'init')\n    })\n  })\n\n  /**\n   * jQuery API\n   * ====================================================\n   */\n\n  $.fn[NAME] = Treeview._jQueryInterface\n  $.fn[NAME].Constructor...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 77K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/EditBody.java

     * 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 org.codelibs.fess.app.web.api.admin.relatedcontent;
    
    import org.codelibs.fess.app.web.admin.relatedcontent.EditForm;
    
    public class EditBody extends EditForm {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 790 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java

     * 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 org.codelibs.fess.app.web.api.admin.dict.synonym;
    
    import org.codelibs.fess.app.web.admin.dict.synonym.DownloadForm;
    
    public class DownloadBody extends DownloadForm {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 798 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/EditBody.java

     * 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 org.codelibs.fess.app.web.api.admin.dict.synonym;
    
    import org.codelibs.fess.app.web.admin.dict.synonym.EditForm;
    
    public class EditBody extends EditForm {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 786 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/EditBody.java

     * 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 org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.admin.dict.stopwords.EditForm;
    
    public class EditBody extends EditForm {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 790 bytes
    - Viewed (0)
Back to top