Package com.avoka.tm.http
Class HttpRequest.FileParam
- java.lang.Object
-
- com.avoka.tm.http.HttpRequest.FileParam
-
- Enclosing class:
- HttpRequest
public static class HttpRequest.FileParam extends java.lang.Object
Provides a multi-part FileParam.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code value for the object.java.lang.String
toString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
hashCode
public int hashCode()
Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided byHashMap
. Implementation calculates hash code based on 'fileName' and 'fileData' fields with the help ofHashCodeBuilder
- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- a hash code value for this object.
-
equals
public boolean equals(java.lang.Object obj)
Indicates whether some other object is "equal to" this one. Implementation relies that the object is of same type and compares 'fileName' and 'fileData' with the help ofEqualsBuilder
in order to return 'true'- Overrides:
equals
in classjava.lang.Object
- Parameters:
obj
- an object.- Returns:
true
if this object is the same as the obj argument;false
otherwise.
-
-