-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from NTIA/sea-metadata-v0.6
`ntia-diagnostics` v1.1.0 and `ntia-nasctn-sea` v0.6.0
- Loading branch information
Showing
10 changed files
with
217 additions
and
15 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
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
63 changes: 63 additions & 0 deletions
63
java/src/main/java/gov/doc/ntia/sigmf/ext/diagnostics/Software.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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package gov.doc.ntia.sigmf.ext.diagnostics; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class Software { | ||
|
||
@JsonProperty(value = "system_platform") | ||
protected String systemPlatform; | ||
|
||
@JsonProperty(value = "python_version") | ||
protected String pythonVersion; | ||
|
||
@JsonProperty(value = "scos_sensor_version") | ||
protected String scosSensorVersion; | ||
|
||
@JsonProperty(value = "scos_actions_version") | ||
protected String scosActionsVersion; | ||
|
||
@JsonProperty(value = "preselector_api_version") | ||
protected String preselectorApiVersion; | ||
|
||
public String getSystemPlatform() { | ||
return systemPlatform; | ||
} | ||
|
||
public void setSystemPlatform(String systemPlatform) { | ||
this.systemPlatform = systemPlatform; | ||
} | ||
|
||
public String getPythonVersion() { | ||
return pythonVersion; | ||
} | ||
|
||
public void setPythonVersion(String pythonVersion) { | ||
this.pythonVersion = pythonVersion; | ||
} | ||
|
||
public String getScosSensorVersion() { | ||
return scosSensorVersion; | ||
} | ||
|
||
public void setScosSensorVersion(String scosSensorVersion) { | ||
this.scosSensorVersion = scosSensorVersion; | ||
} | ||
|
||
public String getScosActionsVersion() { | ||
return scosActionsVersion; | ||
} | ||
|
||
public void setScosActionsVersion(String scosActionsVersion) { | ||
this.scosActionsVersion = scosActionsVersion; | ||
} | ||
|
||
public String getPreselectorApiVersion() { | ||
return preselectorApiVersion; | ||
} | ||
|
||
public void setPreselectorApiVersion(String preselectorApiVersion) { | ||
this.preselectorApiVersion = preselectorApiVersion; | ||
} | ||
} |
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
Oops, something went wrong.