|
@@ -1,40 +1,42 @@
|
|
|
/*
|
|
|
-Copyright 2009-2010 Igor Polevoy
|
|
|
+Copyright 2009-2015 Igor Polevoy
|
|
|
|
|
|
-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
|
|
|
+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
|
|
|
+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.
|
|
|
+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.
|
|
|
*/
|
|
|
-
|
|
|
-/**
|
|
|
- * @author Igor Polevoy: 12/18/13 4:36 PM
|
|
|
- */
|
|
|
-
|
|
|
package app.controllers;
|
|
|
|
|
|
import app.models.World;
|
|
|
-import org.javalite.activeweb.AppController;
|
|
|
+import java.io.IOException;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
-import java.util.Date;
|
|
|
-import java.util.LinkedList;
|
|
|
import java.util.List;
|
|
|
-import java.util.concurrent.ThreadLocalRandom;
|
|
|
|
|
|
-public class QueriesController extends AppController {
|
|
|
+/**
|
|
|
+ * @author Igor Polevoy: 12/18/13 4:36 PM
|
|
|
+ * @author Eric Nielsen
|
|
|
+ */
|
|
|
+public class QueriesController extends DbController {
|
|
|
+ @Override public void index() {
|
|
|
+ view("worlds", getWorlds());
|
|
|
+ render("/queries/index").contentType("application/json");
|
|
|
+ }
|
|
|
|
|
|
- public void index() {
|
|
|
+ @Override public void jackson() throws IOException {
|
|
|
+ JsonController.WRITER.writeValue(outputStream("application/json"), getWorlds());
|
|
|
+ }
|
|
|
|
|
|
- view("worlds", getWorlds());
|
|
|
- render().contentType("application/json").header("Date", new Date().toString());
|
|
|
+ @Override protected String getLayout() {
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
protected List<World> getWorlds() {
|
|
@@ -46,7 +48,7 @@ public class QueriesController extends AppController {
|
|
|
return worlds;
|
|
|
}
|
|
|
|
|
|
- public int getQueries() {
|
|
|
+ protected int getQueries() {
|
|
|
int queries;
|
|
|
try {
|
|
|
queries = Integer.parseInt(param("queries"));
|
|
@@ -60,12 +62,4 @@ public class QueriesController extends AppController {
|
|
|
}
|
|
|
return queries;
|
|
|
}
|
|
|
- protected int randomNumber(){
|
|
|
- return ThreadLocalRandom.current().nextInt(10000) + 1;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected String getLayout() {
|
|
|
- return null;
|
|
|
- }
|
|
|
}
|