Class AbstractSignature
- java.lang.Object
-
- com.checkout.forward.requests.signatures.AbstractSignature
-
- Direct Known Subclasses:
DlocalSignature
public abstract class AbstractSignature extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected SignatureTypetypeThe identifier of the supported signature generation method or a specific third-party service.
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractSignature(SignatureType type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)SignatureTypegetType()The identifier of the supported signature generation method or a specific third-party service.inthashCode()java.lang.StringtoString()
-
-
-
Field Detail
-
type
protected final SignatureType type
The identifier of the supported signature generation method or a specific third-party service. (Required)
-
-
Constructor Detail
-
AbstractSignature
protected AbstractSignature(SignatureType type)
-
-
Method Detail
-
getType
public SignatureType getType()
The identifier of the supported signature generation method or a specific third-party service. (Required)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-