Package com.gentics.api.imagestore
Class GenticsImageStoreRequest
- java.lang.Object
-
- com.gentics.api.imagestore.GenticsImageStoreRequest
-
public class GenticsImageStoreRequest extends Object
Bean for accessing and modifying request parameters before they are sent to the GenticsImageStore- Author:
- Taylor
-
-
Constructor Summary
Constructors Constructor Description GenticsImageStoreRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.servlet.http.Cookie[]
getCookies()
Returns a list of cookies included with the request to the GenticsImageStoreMap<String,String>
getHeaders()
Return a key/value Map of headers included with the request to the GenticsImageStoreString
getImageUri()
Returns the path to the image called by the request to the GenticsImageStoreString
getQueryString()
Returns all query parameters sent along with the request to the GenticsImageStore as a Stringvoid
setCookies(javax.servlet.http.Cookie[] cookies)
void
setHeaders(Map<String,String> headers)
void
setImageUri(String imageUri)
void
setQueryString(String queryString)
-
-
-
Method Detail
-
getImageUri
public String getImageUri()
Returns the path to the image called by the request to the GenticsImageStore- Returns:
- Path to the image
-
setImageUri
public void setImageUri(String imageUri)
- Parameters:
imageUri
- image path to set
-
getQueryString
public String getQueryString()
Returns all query parameters sent along with the request to the GenticsImageStore as a String- Returns:
- Query String
-
setQueryString
public void setQueryString(String queryString)
- Parameters:
queryString
- the String of query parameters to set
-
getCookies
public javax.servlet.http.Cookie[] getCookies()
Returns a list of cookies included with the request to the GenticsImageStore- Returns:
- List of cookies
-
setCookies
public void setCookies(javax.servlet.http.Cookie[] cookies)
- Parameters:
cookies
- the list of cookies included to set
-
getHeaders
public Map<String,String> getHeaders()
Return a key/value Map of headers included with the request to the GenticsImageStore- Returns:
- Map of header values
-
-