(no commit message)
[utils] / crawler / src / org / wamblee / crawler / PostPageRequest.java
1 /*
2  * Copyright 2005 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */ 
16
17 package org.wamblee.crawler;
18
19 import java.io.PrintStream;
20
21 import org.apache.commons.httpclient.HttpClient;
22 import org.apache.commons.httpclient.NameValuePair;
23 import org.apache.commons.httpclient.methods.PostMethod;
24 import org.w3c.dom.Document;
25
26 /**
27  * Retrieving pages using the post method.
28  */
29 public class PostPageRequest extends AbstractPageRequest {
30     
31     public PostPageRequest(NameValuePair[] aParams, String aXslt) { 
32         super(aParams, aXslt, null);
33     }
34     
35     public PostPageRequest(NameValuePair[] aParams, String aXslt, PrintStream aOs) { 
36         super(aParams, aXslt, aOs);
37     }
38     
39     
40     /* (non-Javadoc)
41      * @see org.wamblee.crawler.PageRequest#execute(java.lang.String, org.apache.commons.httpclient.HttpClient)
42      */
43     public Document execute(String aUrl, HttpClient aClient) {
44         PostMethod method = new PostMethod(aUrl);
45         method.addParameters(getParameters());
46         return executeMethod(aClient, method);
47     }
48
49 }