Class Integration
- java.lang.Object
-
- com.epam.ta.reportportal.entity.integration.Integration
-
- All Implemented Interfaces:
java.io.Serializable
@Entity public class Integration extends java.lang.Object implements java.io.Serializable- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Integration()Integration(java.lang.Long id, Project project, IntegrationType type, IntegrationParams params, java.time.LocalDateTime creationDate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.time.LocalDateTimegetCreationDate()java.lang.StringgetCreator()java.lang.LonggetId()java.lang.StringgetName()IntegrationParamsgetParams()ProjectgetProject()IntegrationTypegetType()booleanisEnabled()voidsetCreationDate(java.time.LocalDateTime creationDate)voidsetCreator(java.lang.String creator)voidsetEnabled(boolean enabled)voidsetId(java.lang.Long id)voidsetName(java.lang.String name)voidsetParams(IntegrationParams params)voidsetProject(Project project)voidsetType(IntegrationType type)
-
-
-
Constructor Detail
-
Integration
public Integration(java.lang.Long id, Project project, IntegrationType type, IntegrationParams params, java.time.LocalDateTime creationDate)
-
Integration
public Integration()
-
-
Method Detail
-
getId
public java.lang.Long getId()
-
setId
public void setId(java.lang.Long id)
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
getProject
public Project getProject()
-
setProject
public void setProject(Project project)
-
getType
public IntegrationType getType()
-
setType
public void setType(IntegrationType type)
-
getParams
public IntegrationParams getParams()
-
setParams
public void setParams(IntegrationParams params)
-
getCreator
public java.lang.String getCreator()
-
setCreator
public void setCreator(java.lang.String creator)
-
getCreationDate
public java.time.LocalDateTime getCreationDate()
-
setCreationDate
public void setCreationDate(java.time.LocalDateTime creationDate)
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean enabled)
-
-