Package com.adyen.model.nexo
Class TrackData
- java.lang.Object
-
- com.adyen.model.nexo.TrackData
-
public class TrackData extends Object
Definition: Magnetic track or magnetic ink characters line. -- Reference: ISO 7813 - ISO 4909 -- Usage: Generic data structure for a card track, used when the magstripe card reader is located on the Sale Terminal, or for magstripe Card Reader device request. The data structure is also used to store the line at the bottom of a bank checkJava class for TrackData complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TrackData"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="TrackValue" type="{}TrackValue" /> <attribute name="TrackNumb" type="{}TrackNumb" default="2" /> <attribute name="TrackFormat" type="{}TrackFormatType" default="ISO" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected TrackFormatTypetrackFormatprotected IntegertrackNumbprotected StringtrackValue
-
Constructor Summary
Constructors Constructor Description TrackData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TrackFormatTypegetTrackFormat()Gets the value of the trackFormat property.intgetTrackNumb()Gets the value of the trackNumb property.StringgetTrackValue()Gets the value of the trackValue property.voidsetTrackFormat(TrackFormatType value)Sets the value of the trackFormat property.voidsetTrackNumb(Integer value)Sets the value of the trackNumb property.voidsetTrackValue(String value)Sets the value of the trackValue property.
-
-
-
Field Detail
-
trackValue
protected String trackValue
-
trackNumb
protected Integer trackNumb
-
trackFormat
protected TrackFormatType trackFormat
-
-
Method Detail
-
getTrackValue
public String getTrackValue()
Gets the value of the trackValue property.- Returns:
- possible object is
String
-
setTrackValue
public void setTrackValue(String value)
Sets the value of the trackValue property.- Parameters:
value- allowed object isString
-
getTrackNumb
public int getTrackNumb()
Gets the value of the trackNumb property.- Returns:
- possible object is
Integer
-
setTrackNumb
public void setTrackNumb(Integer value)
Sets the value of the trackNumb property.- Parameters:
value- allowed object isInteger
-
getTrackFormat
public TrackFormatType getTrackFormat()
Gets the value of the trackFormat property.- Returns:
- possible object is
TrackFormatType
-
setTrackFormat
public void setTrackFormat(TrackFormatType value)
Sets the value of the trackFormat property.- Parameters:
value- allowed object isTrackFormatType
-
-