You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
619 B
20 lines
619 B
package dto; |
|
|
|
import org.json.JSONException; |
|
import org.json.JSONObject; |
|
|
|
public class BrewObjPayload { |
|
|
|
public static BrewObj constructScanPayload(JSONObject jsonObj) throws JSONException { |
|
return new BrewObj( |
|
jsonObj.getString("build_system_type"), |
|
jsonObj.getString("brew_id"), |
|
jsonObj.getString("brew_nvr"), |
|
jsonObj.getString("pnc_id"), |
|
jsonObj.getString("artifact_type"), |
|
jsonObj.getString("file_name"), |
|
jsonObj.getBoolean("built_from_source")); |
|
} |
|
|
|
private BrewObjPayload() {} |
|
}
|
|
|