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.
15 lines
426 B
15 lines
426 B
18 years ago
|
|
||
|
import de.anomic.http.httpHeader;
|
||
|
import de.anomic.plasma.plasmaSwitchboard;
|
||
|
import de.anomic.server.serverObjects;
|
||
|
import de.anomic.server.serverSwitch;
|
||
|
|
||
|
|
||
|
public class WatchWebStructure_p {
|
||
|
public static serverObjects respond(httpHeader header, serverObjects post, serverSwitch env) {
|
||
|
plasmaSwitchboard sb = (plasmaSwitchboard) env;
|
||
|
serverObjects prop = new serverObjects();
|
||
|
return prop;
|
||
|
}
|
||
|
}
|