add initialize()
This commit is contained in:
parent
fc8b85d1e3
commit
1177de5534
4 changed files with 4 additions and 0 deletions
|
@ -115,6 +115,7 @@ public class AdminBoostdocumentruleAction extends FessAdminAction {
|
|||
@Token(save = true, validate = false)
|
||||
@Execute
|
||||
public HtmlResponse createpage(BoostDocumentRuleEditForm form) {
|
||||
form.initialize();
|
||||
form.crudMode = CommonConstants.CREATE_MODE;
|
||||
return asHtml(path_AdminBoostdocumentrule_EditJsp);
|
||||
}
|
||||
|
|
|
@ -117,6 +117,7 @@ public class AdminKeymatchAction extends FessAdminAction {
|
|||
@Token(save = true, validate = false)
|
||||
@Execute
|
||||
public HtmlResponse createpage(KeyMatchEditForm form) {
|
||||
form.initialize();
|
||||
form.crudMode = CommonConstants.CREATE_MODE;
|
||||
return asHtml(path_AdminKeymatch_EditJsp);
|
||||
}
|
||||
|
|
|
@ -115,6 +115,7 @@ public class AdminLabeltypeAction extends FessAdminAction {
|
|||
@Token(save = true, validate = false)
|
||||
@Execute
|
||||
public HtmlResponse createpage(LabelTypeEditForm form) {
|
||||
form.initialize();
|
||||
form.crudMode = CommonConstants.CREATE_MODE;
|
||||
return asHtml(path_AdminLabeltype_EditJsp);
|
||||
}
|
||||
|
|
|
@ -115,6 +115,7 @@ public class AdminPathmappingAction extends FessAdminAction {
|
|||
@Token(save = true, validate = false)
|
||||
@Execute
|
||||
public HtmlResponse createpage(PathMappingEditForm form) {
|
||||
form.initialize();
|
||||
form.crudMode = CommonConstants.CREATE_MODE;
|
||||
return asHtml(path_AdminPathmapping_EditJsp);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue