Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for role (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/role/CreateForm.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.admin.role;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.lastaflute.web.validation.Required;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java

        @Size(max = 100)
        public String password;
    
        @Size(max = 100)
        public String confirmPassword;
    
        public Map<String, String> attributes = new HashMap<>();
    
        public String[] roles;
    
        public String[] groups;
    
        public void initialize() {
            crudMode = CrudMode.CREATE;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
Back to top