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.
41 lines
1.0 KiB
41 lines
1.0 KiB
package rest; |
|
|
|
public class Scan { |
|
private int scanId; |
|
private String productId; |
|
private String eventId; |
|
private String isManagedService; |
|
private String componentList; |
|
|
|
public int getScanId() { |
|
return scanId; |
|
} |
|
public void setScanId(int scanId) { |
|
this.scanId = scanId; |
|
} |
|
public String getProductId() { |
|
return productId; |
|
} |
|
public void setProductId(String productId) { |
|
this.productId = productId; |
|
} |
|
public String getEventId() { |
|
return eventId; |
|
} |
|
public void setEventId(String eventId) { |
|
this.eventId = eventId; |
|
} |
|
public String getIsManagedService(){ |
|
return isManagedService; |
|
} |
|
public void setIsManagedService(String isManagedService){ |
|
this.isManagedService = isManagedService; |
|
} |
|
public String getComponentList(){ |
|
return componentList; |
|
} |
|
public void setComponentList(String componentList){ |
|
this.componentList = componentList; |
|
} |
|
|
|
} |