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 booleancanEqual(Object other)booleanequals(Object o)StringgetName()The name of this detail.ObjectgetValue()A value for this detail.inthashCode()voidsetName(String name)The name of this detail.voidsetValue(Object value)A value for this detail.StringtoString()
-
-
-
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)
-
-