Class Incident
- java.lang.Object
-
- org.hibernate.testing.orm.domain.helpdesk.Incident
-
@Entity public class Incident extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Incident()
Incident(java.lang.Integer id, java.lang.String description, java.time.Instant reported)
Incident(java.lang.Integer id, java.lang.String description, java.time.Instant reported, java.time.Instant effectiveStart, java.time.Instant effectiveEnd)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
java.time.Instant
getEffectiveEnd()
java.time.Instant
getEffectiveStart()
java.lang.Integer
getId()
java.time.Instant
getReported()
void
setDescription(java.lang.String description)
void
setEffectiveEnd(java.time.Instant effectiveEnd)
void
setEffectiveStart(java.time.Instant effectiveStart)
void
setId(java.lang.Integer id)
void
setReported(java.time.Instant reported)
-
-
-
Constructor Detail
-
Incident
public Incident()
-
Incident
public Incident(java.lang.Integer id, java.lang.String description, java.time.Instant reported)
-
Incident
public Incident(java.lang.Integer id, java.lang.String description, java.time.Instant reported, java.time.Instant effectiveStart, java.time.Instant effectiveEnd)
-
-
Method Detail
-
getId
public java.lang.Integer getId()
-
setId
public void setId(java.lang.Integer id)
-
getDescription
public java.lang.String getDescription()
-
setDescription
public void setDescription(java.lang.String description)
-
getReported
public java.time.Instant getReported()
-
setReported
public void setReported(java.time.Instant reported)
-
getEffectiveStart
public java.time.Instant getEffectiveStart()
-
setEffectiveStart
public void setEffectiveStart(java.time.Instant effectiveStart)
-
getEffectiveEnd
public java.time.Instant getEffectiveEnd()
-
setEffectiveEnd
public void setEffectiveEnd(java.time.Instant effectiveEnd)
-
-