generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor internal metadata step to use generics instead of empty inte…
…rface (#681) * Removed MetaDataStep interface and refactored code to use generics instead * EtorMetaDataStep is not implementing an interface any more
- Loading branch information
1 parent
55f0e7d
commit 63786e9
Showing
6 changed files
with
9 additions
and
19 deletions.
There are no files selected for viewing
4 changes: 1 addition & 3 deletions
4
etor/src/main/java/gov/hhs/cdc/trustedintermediary/etor/metadata/EtorMetaDataStep.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
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
4 changes: 0 additions & 4 deletions
4
shared/src/main/java/gov/hhs/cdc/trustedintermediary/metadata/MetaDataStep.java
This file was deleted.
Oops, something went wrong.
4 changes: 1 addition & 3 deletions
4
shared/src/main/java/gov/hhs/cdc/trustedintermediary/wrappers/MetricMetaData.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,9 +1,7 @@ | ||
package gov.hhs.cdc.trustedintermediary.wrappers; | ||
|
||
import gov.hhs.cdc.trustedintermediary.metadata.MetaDataStep; | ||
|
||
/** Interface to provide a blueprint for working with metadate */ | ||
public interface MetricMetaData { | ||
|
||
void put(String value, MetaDataStep step); | ||
<T> void put(String value, T step); | ||
} |
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