рефакторинг запроса версий компонент. сделал одной командой
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package _VisualDVM.Repository.Component.Json;
|
||||
import Common.CommonConstants;
|
||||
import _VisualDVM.Repository.Component.ComponentType;
|
||||
import com.google.gson.annotations.Expose;
|
||||
|
||||
import java.io.Serializable;
|
||||
public class ComponentVersionsInfoJson implements Serializable {
|
||||
@Expose
|
||||
public ComponentType componentType = ComponentType.Undefined;
|
||||
@Expose
|
||||
public String minimal_version = "";
|
||||
@Expose
|
||||
public String actual_version = "";
|
||||
public ComponentVersionsInfoJson(ComponentType componentType_in){
|
||||
componentType=componentType_in;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user