Class ScheduledJobDetailRef
- java.lang.Object
-
- com.broadleafcommerce.common.messaging.domain.ScheduledJobDetailRef
-
public class ScheduledJobDetailRef extends Object
Detailed information for aScheduledJobRef
, which corresponds to a ScheduledJobDetail of the scheduled job microservice.- Author:
- Chad Harchar (charchar)
-
-
Constructor Summary
Constructors Constructor Description ScheduledJobDetailRef()
ScheduledJobDetailRef(String name, Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getName()
The name of this detail.Object
getValue()
A value for this detail.int
hashCode()
void
setName(String name)
The name of this detail.void
setValue(Object value)
A value for this detail.String
toString()
-
-
-
Method Detail
-
getName
public String getName()
The name of this detail.- Returns:
- the name of this detail
-
getValue
public Object getValue()
A value for this detail. This could be a simple String structure or a more complicated Object.- Returns:
- A value for this detail
-
setName
public void setName(String name)
The name of this detail.- Parameters:
name
- the name of this detail
-
setValue
public void setValue(Object value)
A value for this detail. This could be a simple String structure or a more complicated Object.- Parameters:
value
- A value for this detail
-
canEqual
protected boolean canEqual(Object other)
-
-