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.
25 lines
572 B
25 lines
572 B
package dto; |
|
|
|
import lombok.AllArgsConstructor; |
|
import lombok.Builder; |
|
import lombok.Getter; |
|
import lombok.ToString; |
|
import lombok.extern.jackson.Jacksonized; |
|
|
|
// import org.jboss.pnc.api.dto.Request; |
|
//still need to fix all the scan objects to be significantly less poorly written |
|
import java.io.Serializable; |
|
|
|
@ToString |
|
@Getter |
|
@AllArgsConstructor |
|
@Jacksonized |
|
@Builder |
|
public class ScanObj implements Serializable { |
|
|
|
public String scanId; |
|
public String productId; |
|
public String eventId; |
|
public String isManagedService; |
|
public String componentList; |
|
} |