Class JpaScheduledJobDetailId
- java.lang.Object
-
- com.broadleafcommerce.scheduledjob.provider.jpa.domain.JpaScheduledJobDetailId
-
- All Implemented Interfaces:
Serializable
public class JpaScheduledJobDetailId extends Object implements Serializable
The ID class representing the composite key forJpaScheduledJobDetail
.- Author:
- Samarth Dhruva (samarthd)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JpaScheduledJobDetailId()
JpaScheduledJobDetailId(String job, String name, String valueSha)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getJob()
String
getName()
String
getValueSha()
int
hashCode()
void
setJob(String job)
void
setName(String name)
void
setValueSha(String valueSha)
String
toString()
-
-
-
Method Detail
-
getJob
public String getJob()
- See Also:
JpaScheduledJobDetail.job
-
getName
public String getName()
- See Also:
JpaScheduledJobDetail.name
-
getValueSha
public String getValueSha()
- See Also:
JpaScheduledJobDetail.valueSha
-
setJob
public void setJob(String job)
- See Also:
JpaScheduledJobDetail.job
-
setName
public void setName(String name)
- See Also:
JpaScheduledJobDetail.name
-
setValueSha
public void setValueSha(String valueSha)
- See Also:
JpaScheduledJobDetail.valueSha
-
canEqual
protected boolean canEqual(Object other)
-
-