YARN-8957. Add Serializable interface to ComponentContainers.
Contributed by Zhankun Tang
This commit is contained in:
parent
887244de4a
commit
08d69d91f2
|
@ -24,6 +24,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceStability;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
|
@ -33,7 +34,7 @@ import java.util.List;
|
|||
@InterfaceStability.Unstable
|
||||
@ApiModel(description = "Containers of a component.")
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
public class ComponentContainers {
|
||||
public class ComponentContainers implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1456748479118874991L;
|
||||
|
||||
|
|
Loading…
Reference in New Issue