Home | History | Annotate | Download | only in server

Lines Matching defs:action

60     static class Action {
63 private Action(String name) { this.name = name; }
66 static Action GET = new Action("GET");
67 static Action PUT = new Action("PUT");
68 static Action POST = new Action("POST");
69 static Action HEAD = new Action("HEAD");
71 static Action parse(String s) {
84 private Action action;
88 Action action() { return action; }
92 private Request(Action a, String v, URI u) {
93 action = a;
99 return (action + " " + version + " " + uri);
146 Action a;
148 a = Action.parse(m.group(1));