|
@@ -17,6 +17,7 @@ package org.codelibs.fess.mylasta.direction.sponsor;
|
|
|
|
|
|
import org.dbflute.util.DfTypeUtil;
|
|
import org.dbflute.util.DfTypeUtil;
|
|
import org.lastaflute.web.path.ActionAdjustmentProvider;
|
|
import org.lastaflute.web.path.ActionAdjustmentProvider;
|
|
|
|
+import org.lastaflute.web.path.FormMappingOption;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @author jflute
|
|
* @author jflute
|
|
@@ -28,6 +29,13 @@ public class FessActionAdjustmentProvider implements ActionAdjustmentProvider {
|
|
// default methods defined at the interface
|
|
// default methods defined at the interface
|
|
// _/_/_/_/_/_/_/_/_/_/
|
|
// _/_/_/_/_/_/_/_/_/_/
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public FormMappingOption adjustFormMapping() {
|
|
|
|
+ return new FormMappingOption().filterSimpleTextParameter((parameter, meta) -> {
|
|
|
|
+ return parameter.trim();
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return DfTypeUtil.toClassTitle(this) + ":{}";
|
|
return DfTypeUtil.toClassTitle(this) + ":{}";
|