-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ab2d-5997/conf reason code upd (#89)
- Loading branch information
1 parent
7e92fa0
commit 744556e
Showing
12 changed files
with
159 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 6 additions & 33 deletions
39
optout/src/main/java/gov/cms/ab2d/optout/OptOutInformation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,17 @@ | ||
package gov.cms.ab2d.optout; | ||
|
||
import java.sql.Timestamp; | ||
|
||
public class OptOutInformation { | ||
private final String text; | ||
private String mbi; | ||
private Timestamp effectiveDate; | ||
private boolean optOutFlag; | ||
private final long lineNumber; | ||
|
||
public OptOutInformation(String mbi, Timestamp effectiveDate, boolean optOutFlag, long lineNumber, String text) { | ||
private final String mbi; | ||
private final Boolean optOutFlag; | ||
public OptOutInformation(String mbi, Boolean optOutFlag) { | ||
this.mbi = mbi; | ||
this.effectiveDate = effectiveDate; | ||
this.optOutFlag = optOutFlag; | ||
this.lineNumber = lineNumber; | ||
this.text = text; | ||
} | ||
|
||
public OptOutInformation(long lineNumber, String text) { | ||
this.lineNumber = lineNumber; | ||
this.text = text; | ||
public Boolean getOptOutFlag() { | ||
return optOutFlag; | ||
} | ||
|
||
public String getMbi() { | ||
return mbi; | ||
} | ||
|
||
public Timestamp getEffectiveDate() { | ||
return effectiveDate; | ||
} | ||
|
||
public boolean isOptOut() { | ||
return optOutFlag; | ||
} | ||
|
||
public long getLineNumber() { | ||
return lineNumber; | ||
} | ||
|
||
public String getText() { | ||
return text; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
optout/src/main/java/gov/cms/ab2d/optout/OptOutResult.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
14 changes: 10 additions & 4 deletions
14
optout/src/main/java/gov/cms/ab2d/optout/RecordStatus.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.