Updating javadocs

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1292359 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
lresende 2012-02-22 15:55:34 +00:00
parent 21afb51be6
commit 0c66113333

View file

@ -36,8 +36,21 @@ public interface RESTBinding extends Binding {
public List<HTTPHeader> getHttpHeaders();
/**
* Retrieve read timeout configuration for the REST binding
* @return
*/
public int getReadTimeout();
/**
* Configure read timeout for the REST binding
* @param timeout
*/
public void setReadTimeout(int timeout);
/**
* Flag to enable CORS support on the REST binding
* @return
*/
public boolean isCORS();
}