mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-02-02 06:38:42 -05:00
30 lines
788 B
Java
30 lines
788 B
Java
//
|
|
//$LastChangedDate$
|
|
//$LastChangedRevision$
|
|
//$LastChangedBy$
|
|
//
|
|
|
|
package net.yacy.htroot;
|
|
|
|
import net.yacy.cora.protocol.RequestHeader;
|
|
import net.yacy.server.serverObjects;
|
|
import net.yacy.server.serverSwitch;
|
|
|
|
public class test {
|
|
|
|
// http://localhost:8090/test.xml?count=10
|
|
|
|
public static serverObjects respond(@SuppressWarnings("unused") final RequestHeader header, final serverObjects post, @SuppressWarnings("unused") final serverSwitch env) {
|
|
final serverObjects prop = new serverObjects();
|
|
final int count = Math.min(1000, (post == null) ? 0 : post.getInt("count", 0));
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
prop.put("item_" + i + "_text", Integer.toString(i));
|
|
}
|
|
prop.put("item", count);
|
|
|
|
return prop;
|
|
}
|
|
|
|
}
|