Browse Source

modify freegen files

Shinsuke Sugaya 9 years ago
parent
commit
3b933aa310

+ 2 - 2
dbflute_fess/freegen/elasticsearch/BsConditionFilter.vm

@@ -91,11 +91,11 @@ public abstract class Bs${table.camelizedName}CF extends AbstractConditionFilter
         }
     }
 
-    public void query(org.codelibs.fess.es.cbean.cq.bs.AbstractConditionQuery.OperatorCall<${table.camelizedName}CQ> queryLambda) {
+    public void query(${request.package}.cbean.cq.bs.AbstractConditionQuery.OperatorCall<${table.camelizedName}CQ> queryLambda) {
         query(queryLambda, null);
     }
 
-    public void query(org.codelibs.fess.es.cbean.cq.bs.AbstractConditionQuery.OperatorCall<${table.camelizedName}CQ> queryLambda,
+    public void query(${request.package}.cbean.cq.bs.AbstractConditionQuery.OperatorCall<${table.camelizedName}CQ> queryLambda,
             ConditionOptionCall<QueryFilterBuilder> opLambda) {
         ${table.camelizedName}CQ query = new ${table.camelizedName}CQ();
         queryLambda.callback(query);

+ 0 - 3
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

@@ -95,9 +95,6 @@ public interface FessHtmlPath {
     /** The path of the HTML: /admin/dict/userDict/upload.jsp */
     HtmlNext path_AdminDictUserDict_UploadJsp = new HtmlNext("/admin/dict/userDict/upload.jsp");
 
-    /** The path of the HTML: /admin/document/index.jsp */
-    HtmlNext path_AdminDocument_IndexJsp = new HtmlNext("/admin/document/index.jsp");
-
     /** The path of the HTML: /admin/failureurl/confirm.jsp */
     HtmlNext path_AdminFailureurl_ConfirmJsp = new HtmlNext("/admin/failureurl/confirm.jsp");