Class ScheduledJobDetail
- java.lang.Object
-
- com.broadleafcommerce.scheduledjob.domain.ScheduledJobDetail
-
public class ScheduledJobDetail extends Object
Detailed information for aScheduledJob
.- Author:
- Chad Harchar (charchar)
-
-
Field Summary
Fields Modifier and Type Field Description protected static ScheduledJobDetailValueConverter
VALUE_CONVERTER
-
Constructor Summary
Constructors Constructor Description ScheduledJobDetail()
ScheduledJobDetail(String name, String 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.String
getRawValue()
Provides a way to get therawValue
of this detail.Object
getValue()
ConvertsrawValue
to a JSON object, if applicable.int
hashCode()
void
setName(String name)
The name of this detail.void
setRawValue(String rawValue)
Provides a way to set therawValue
of this detail.void
setValue(Object value)
Provides a way to set therawValue
from a JSON object.String
toString()
-
-
-
Field Detail
-
VALUE_CONVERTER
protected static final ScheduledJobDetailValueConverter VALUE_CONVERTER
-
-
Method Detail
-
setRawValue
public void setRawValue(String rawValue)
Provides a way to set therawValue
of this detail.- Parameters:
rawValue
- A value for this detail
-
getRawValue
public String getRawValue()
Provides a way to get therawValue
of this detail.- Returns:
- The value as a string for this detail
-
setValue
public void setValue(Object value)
Provides a way to set therawValue
from a JSON object.- Parameters:
value
- A value for this detail
-
getValue
public Object getValue()
ConvertsrawValue
to a JSON object, if applicable.- Returns:
- A value for this detail
-
getName
public String getName()
The name of this detail.- Returns:
- the name of this detail
-
setName
public void setName(String name)
The name of this detail.- Parameters:
name
- the name of this detail
-
canEqual
protected boolean canEqual(Object other)
-
-