1 /*
2 * Copyright 2012-2025 CodeLibs Project and the Others.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
13 * either express or implied. See the License for the specific language
14 * governing permissions and limitations under the License.
15 */
16 package org.codelibs.fess.app.web.admin.design;
17
18 import org.lastaflute.web.ruts.multipart.MultipartFormFile;
19
20 /**
21 * Form class for design file management in the admin interface.
22 * Handles upload and management of design templates and CSS files.
23 */
24 public class DesignForm {
25
26 /**
27 * Creates a new instance of DesignForm.
28 * This constructor initializes the form for design file management
29 * in the admin interface, handling upload and management of templates and CSS files.
30 */
31 public DesignForm() {
32 // Default constructor with explicit documentation
33 }
34
35 /**
36 * The multipart file containing the design content to upload.
37 */
38 public MultipartFormFile designFile;
39
40 /**
41 * The name of the design file being uploaded.
42 */
43 public String designFileName;
44
45 /**
46 * The target file name for the design file.
47 */
48 public String fileName;
49 }