Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 601 for Authors (0.19 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/reqheader/SearchForm.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.admin.reqheader;
    
    /**
     * @author codelibs
     * @author Shunji Makino
     * @author Keiichi Watanabe
     */
    public class SearchForm {
    
        public String id;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 805 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/webconfig/SearchForm.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.admin.webconfig;
    
    /**
     * @author codelibs
     * @author Shunji Makino
     * @author Keiichi Watanabe
     */
    public class SearchForm {
    
        public String name;
    
        public String urls;
    
        public String description;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 865 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

    import org.codelibs.fess.validation.CustomSize;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
     * @author Shunji Makino
     * @author Keiichi Watanabe
     */
    public class CreateForm {
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 100)
        public String name;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/SearchForm.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.admin.accesstoken;
    
    /**
     * @author codelibs
     * @author jflute
     */
    public class SearchForm {
    
        public String id;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 773 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/joblog/SearchForm.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.admin.joblog;
    
    /**
     * @author codelibs
     * @author Shunji Makino
     */
    public class SearchForm {
    
        public String id;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 773 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/SearchForm.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.admin.boostdoc;
    
    /**
     * @author codelibs
     * @author jflute
     */
    public class SearchForm {
    
        public String urlExpr;
    
        public String boostExpr;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 805 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/SearchForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dict.kuromoji;
    
    import org.lastaflute.web.validation.Required;
    
    /**
     * @author shinsuke
     * @author Keiichi Watanabe
     */
    public class SearchForm {
    
        @Required
        public String dictId;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 850 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java

     */
    package org.codelibs.fess.app.web.admin.badword;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class UploadForm {
    
        @Required
        public MultipartFormFile badWordFile;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 921 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/EditForm.java

    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author shinsuke
     * @author jflute
     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Size(max = 1000)
        public String updatedBy;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class CreateForm {
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Pattern(regexp = "[^\\s]+")
        public String suggestWord;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
Back to top