You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
729 B
28 lines
729 B
//
|
|
//$LastChangedDate$
|
|
//$LastChangedRevision$
|
|
//$LastChangedBy$
|
|
//
|
|
|
|
import de.anomic.http.metadata.RequestHeader;
|
|
import de.anomic.server.serverObjects;
|
|
import de.anomic.server.serverSwitch;
|
|
|
|
public class test {
|
|
|
|
// http://localhost:8080/test.xml?count=10
|
|
|
|
public static serverObjects respond(final RequestHeader header, final serverObjects post, 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;
|
|
}
|
|
|
|
}
|