Shinsuke Sugaya 8 éve
szülő
commit
76f1663fd3
27 módosított fájl, 447 hozzáadás és 34 törlés
  1. 20 4
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java
  2. 17 2
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java
  3. 23 6
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
  4. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/CreateBody.java
  5. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/DownloadBody.java
  6. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/EditBody.java
  7. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/SearchBody.java
  8. 21 5
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java
  9. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/CreateBody.java
  10. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/DownloadBody.java
  11. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/EditBody.java
  12. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/SearchBody.java
  13. 23 6
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
  14. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/CreateBody.java
  15. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/DownloadBody.java
  16. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/EditBody.java
  17. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/SearchBody.java
  18. 22 6
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/ApiAdminDictSeunjeonAction.java
  19. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/CreateBody.java
  20. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/DownloadBody.java
  21. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/EditBody.java
  22. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/SearchBody.java
  23. 21 5
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
  24. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/CreateBody.java
  25. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java
  26. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/EditBody.java
  27. 15 0
      src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/SearchBody.java

+ 20 - 4
src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

@@ -1,5 +1,25 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict;
 
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+import javax.annotation.Resource;
+
 import org.codelibs.fess.app.web.api.ApiResult;
 import org.codelibs.fess.app.web.api.admin.FessApiAdminAction;
 import org.codelibs.fess.dict.DictionaryFile;
@@ -8,10 +28,6 @@ import org.codelibs.fess.dict.DictionaryManager;
 import org.lastaflute.web.Execute;
 import org.lastaflute.web.response.JsonResponse;
 
-import javax.annotation.Resource;
-import java.util.stream.Collectors;
-import java.util.stream.Stream;
-
 public class ApiAdminDictAction extends FessApiAdminAction {
     @Resource
     protected DictionaryManager dictionaryManager;

+ 17 - 2
src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java

@@ -1,9 +1,24 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict;
 
-import org.codelibs.fess.app.web.admin.dict.ListForm;
-
 import java.util.Date;
 
+import org.codelibs.fess.app.web.admin.dict.ListForm;
+
 public class ListBody extends ListForm {
     public String id;
     public String type;

+ 23 - 6
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

@@ -1,5 +1,28 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.kuromoji;
 
+import static org.codelibs.fess.app.web.admin.dict.kuromoji.AdminDictKuromojiAction.createKuromojiItem;
+
+import java.io.File;
+import java.io.InputStream;
+import java.util.stream.Collectors;
+
+import javax.annotation.Resource;
+
 import org.codelibs.fess.app.pager.KuromojiPager;
 import org.codelibs.fess.app.service.KuromojiService;
 import org.codelibs.fess.app.web.CrudMode;
@@ -12,12 +35,6 @@ import org.lastaflute.web.Execute;
 import org.lastaflute.web.response.JsonResponse;
 import org.lastaflute.web.response.StreamResponse;
 
-import javax.annotation.Resource;
-
-import java.io.*;
-import java.util.stream.Collectors;
-import static org.codelibs.fess.app.web.admin.dict.kuromoji.AdminDictKuromojiAction.*;
-
 public class ApiAdminDictKuromojiAction extends FessApiAdminAction {
 
     @Resource

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/CreateBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.kuromoji;
 
 import org.codelibs.fess.app.web.admin.dict.kuromoji.CreateForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/DownloadBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.kuromoji;
 
 import org.codelibs.fess.app.web.admin.dict.kuromoji.DownloadForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/EditBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.kuromoji;
 
 import org.codelibs.fess.app.web.admin.dict.kuromoji.EditForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/SearchBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.kuromoji;
 
 import org.codelibs.fess.app.web.admin.dict.kuromoji.SearchForm;

+ 21 - 5
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

@@ -1,5 +1,26 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.mapping;
 
+import java.io.File;
+import java.io.InputStream;
+import java.util.stream.Collectors;
+
+import javax.annotation.Resource;
+
 import org.codelibs.fess.app.pager.CharMappingPager;
 import org.codelibs.fess.app.service.CharMappingService;
 import org.codelibs.fess.app.web.CrudMode;
@@ -13,11 +34,6 @@ import org.lastaflute.web.Execute;
 import org.lastaflute.web.response.JsonResponse;
 import org.lastaflute.web.response.StreamResponse;
 
-import javax.annotation.Resource;
-
-import java.io.*;
-import java.util.stream.Collectors;
-
 public class ApiAdminDictMappingAction extends FessApiAdminAction {
 
     @Resource

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/CreateBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.mapping;
 
 import org.codelibs.fess.app.web.admin.dict.mapping.CreateForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/DownloadBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.mapping;
 
 import org.codelibs.fess.app.web.admin.dict.mapping.DownloadForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/EditBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.mapping;
 
 import org.codelibs.fess.app.web.admin.dict.mapping.EditForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/SearchBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.mapping;
 
 import org.codelibs.fess.app.web.admin.dict.mapping.SearchForm;

+ 23 - 6
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

@@ -1,5 +1,28 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.protwords;
 
+import static org.codelibs.fess.app.web.admin.dict.protwords.AdminDictProtwordsAction.createProtwordsItem;
+
+import java.io.File;
+import java.io.InputStream;
+import java.util.stream.Collectors;
+
+import javax.annotation.Resource;
+
 import org.codelibs.fess.app.pager.ProtwordsPager;
 import org.codelibs.fess.app.service.ProtwordsService;
 import org.codelibs.fess.app.web.CrudMode;
@@ -12,12 +35,6 @@ import org.lastaflute.web.Execute;
 import org.lastaflute.web.response.JsonResponse;
 import org.lastaflute.web.response.StreamResponse;
 
-import javax.annotation.Resource;
-
-import java.io.*;
-import java.util.stream.Collectors;
-import static org.codelibs.fess.app.web.admin.dict.protwords.AdminDictProtwordsAction.*;
-
 public class ApiAdminDictProtwordsAction extends FessApiAdminAction {
     @Resource
     private ProtwordsService protwordsService;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/CreateBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.protwords;
 
 import org.codelibs.fess.app.web.admin.dict.protwords.CreateForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/DownloadBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.protwords;
 
 import org.codelibs.fess.app.web.admin.dict.protwords.DownloadForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/EditBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.protwords;
 
 import org.codelibs.fess.app.web.admin.dict.protwords.EditForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/SearchBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.protwords;
 
 import org.codelibs.fess.app.web.admin.dict.protwords.SearchForm;

+ 22 - 6
src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/ApiAdminDictSeunjeonAction.java

@@ -1,10 +1,31 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.seunjeon;
 
+import java.io.File;
+import java.io.InputStream;
+import java.util.stream.Collectors;
+
+import javax.annotation.Resource;
+
 import org.codelibs.fess.app.pager.SeunjeonPager;
 import org.codelibs.fess.app.service.SeunjeonService;
 import org.codelibs.fess.app.web.CrudMode;
-import org.codelibs.fess.app.web.admin.dict.seunjeon.UploadForm;
 import org.codelibs.fess.app.web.admin.dict.seunjeon.AdminDictSeunjeonAction;
+import org.codelibs.fess.app.web.admin.dict.seunjeon.UploadForm;
 import org.codelibs.fess.app.web.api.ApiResult;
 import org.codelibs.fess.app.web.api.admin.FessApiAdminAction;
 import org.codelibs.fess.dict.seunjeon.SeunjeonFile;
@@ -13,11 +34,6 @@ import org.lastaflute.web.Execute;
 import org.lastaflute.web.response.JsonResponse;
 import org.lastaflute.web.response.StreamResponse;
 
-import javax.annotation.Resource;
-
-import java.io.*;
-import java.util.stream.Collectors;
-
 public class ApiAdminDictSeunjeonAction extends FessApiAdminAction {
 
     @Resource

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/CreateBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.seunjeon;
 
 import org.codelibs.fess.app.web.admin.dict.seunjeon.CreateForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/DownloadBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.seunjeon;
 
 import org.codelibs.fess.app.web.admin.dict.seunjeon.DownloadForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/EditBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.seunjeon;
 
 import org.codelibs.fess.app.web.admin.dict.seunjeon.EditForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/seunjeon/SearchBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.seunjeon;
 
 import org.codelibs.fess.app.web.admin.dict.seunjeon.SearchForm;

+ 21 - 5
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

@@ -1,5 +1,26 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.synonym;
 
+import java.io.File;
+import java.io.InputStream;
+import java.util.stream.Collectors;
+
+import javax.annotation.Resource;
+
 import org.codelibs.fess.app.pager.SynonymPager;
 import org.codelibs.fess.app.service.SynonymService;
 import org.codelibs.fess.app.web.CrudMode;
@@ -13,11 +34,6 @@ import org.lastaflute.web.Execute;
 import org.lastaflute.web.response.JsonResponse;
 import org.lastaflute.web.response.StreamResponse;
 
-import javax.annotation.Resource;
-
-import java.io.*;
-import java.util.stream.Collectors;
-
 public class ApiAdminDictSynonymAction extends FessApiAdminAction {
 
     @Resource

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/CreateBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.synonym;
 
 import org.codelibs.fess.app.web.admin.dict.synonym.CreateForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.synonym;
 
 import org.codelibs.fess.app.web.admin.dict.synonym.DownloadForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/EditBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.synonym;
 
 import org.codelibs.fess.app.web.admin.dict.synonym.EditForm;

+ 15 - 0
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/SearchBody.java

@@ -1,3 +1,18 @@
+/*
+ * Copyright 2012-2017 CodeLibs Project and the Others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * 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.api.admin.dict.synonym;
 
 import org.codelibs.fess.app.web.admin.dict.synonym.SearchForm;