All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.grasshopper.extent.data.pojo.NonExecutable Maven / Gradle / Ivy

The newest version!
package tech.grasshopper.extent.data.pojo;

import java.util.ArrayList;
import java.util.List;

import lombok.Builder.Default;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.SuperBuilder;

@Data
@SuperBuilder
@EqualsAndHashCode(callSuper = true)
public abstract class NonExecutable extends BaseEntity {

	@Default
	protected List tags = new ArrayList<>();
	@Default
	private List authors = new ArrayList<>();
	@Default
	private List devices = new ArrayList<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy