Package com.ibm.dbb.migration
Class MappingInfo
- java.lang.Object
-
- com.ibm.dbb.migration.MappingInfo
-
public class MappingInfo extends java.lang.Object
Define the information required to copy members from data set to HFS
-
-
Constructor Summary
Constructors Constructor Description MappingInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDataset()
The data set contains members to be migratedjava.lang.String
getFullyQualifiedDsn()
Construct a fully qualified data set memberjava.lang.String
getHfsPath()
The HFS path to copy the member tojava.lang.String
getMember()
Returns the member to be migratedjava.lang.String
getPdsEncoding()
The encoding to be used to read the contents of the member in the data setvoid
setDataset(java.lang.String dataset)
Sets the data set to be migratedvoid
setHfsPath(java.lang.String hfsPath)
Sets the HFS path to copy the member tovoid
setMember(java.lang.String member)
Set the member to be migratedvoid
setPdsEncoding(java.lang.String pdsEncoding)
Set the encoding to be used to read the contents of the member in the data setjava.lang.String
toString()
-
-
-
Method Detail
-
getDataset
public java.lang.String getDataset()
The data set contains members to be migrated- Returns:
- the data set
-
setDataset
public void setDataset(java.lang.String dataset)
Sets the data set to be migrated- Parameters:
dataset
- the data set
-
getMember
public java.lang.String getMember()
Returns the member to be migrated- Returns:
- the member name
-
setMember
public void setMember(java.lang.String member)
Set the member to be migrated- Parameters:
member
- the member name
-
getFullyQualifiedDsn
public java.lang.String getFullyQualifiedDsn()
Construct a fully qualified data set member- Returns:
- the fully qualified data set member
-
getHfsPath
public java.lang.String getHfsPath()
The HFS path to copy the member to- Returns:
- the HFS path
-
setHfsPath
public void setHfsPath(java.lang.String hfsPath)
Sets the HFS path to copy the member to- Parameters:
hfsPath
- the HFS path
-
getPdsEncoding
public java.lang.String getPdsEncoding()
The encoding to be used to read the contents of the member in the data set- Returns:
- the encoding
-
setPdsEncoding
public void setPdsEncoding(java.lang.String pdsEncoding)
Set the encoding to be used to read the contents of the member in the data set- Parameters:
pdsEncoding
- the encoding
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-