Class CommonCellAttributes
- java.lang.Object
-
- io.datahubproject.openapi.generated.CommonCellAttributes
-
@Validated @Generated(value="io.swagger.codegen.v3.generators.java.SpringCodegen", date="2023-06-09T09:27:54.187483Z[Etc/UTC]") public class CommonCellAttributes extends java.lang.Object
Common attributes for a cell in a Notebook
-
-
Constructor Summary
Constructors Constructor Description CommonCellAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CommonCellAttributes
cellId(java.lang.String cellId)
CommonCellAttributes
cellTitle(java.lang.String cellTitle)
CommonCellAttributes
changeAuditStamps(ChangeAuditStamps changeAuditStamps)
boolean
equals(java.lang.Object o)
@NotNull java.lang.String
getCellId()
Unique id for the cell.java.lang.String
getCellTitle()
Title of the cell@NotNull @Valid ChangeAuditStamps
getChangeAuditStamps()
Get changeAuditStampsint
hashCode()
void
setCellId(java.lang.String cellId)
void
setCellTitle(java.lang.String cellTitle)
void
setChangeAuditStamps(ChangeAuditStamps changeAuditStamps)
java.lang.String
toString()
-
-
-
Method Detail
-
cellTitle
public CommonCellAttributes cellTitle(java.lang.String cellTitle)
-
getCellTitle
public java.lang.String getCellTitle()
Title of the cell- Returns:
- cellTitle
-
setCellTitle
public void setCellTitle(java.lang.String cellTitle)
-
cellId
public CommonCellAttributes cellId(java.lang.String cellId)
-
getCellId
@NotNull public @NotNull java.lang.String getCellId()
Unique id for the cell. This id should be globally unique for a Notebook tool even when there are multiple deployments of it. As an example, Notebook URL could be used here for QueryBook such as 'querybook.com/notebook/773/?cellId=1234'- Returns:
- cellId
-
setCellId
public void setCellId(java.lang.String cellId)
-
changeAuditStamps
public CommonCellAttributes changeAuditStamps(ChangeAuditStamps changeAuditStamps)
-
getChangeAuditStamps
@NotNull @Valid public @NotNull @Valid ChangeAuditStamps getChangeAuditStamps()
Get changeAuditStamps- Returns:
- changeAuditStamps
-
setChangeAuditStamps
public void setChangeAuditStamps(ChangeAuditStamps changeAuditStamps)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-