Class ScheduledJobKey
- java.lang.Object
-
- com.atlassian.confluence.schedule.ScheduledJobKey
-
- All Implemented Interfaces:
Serializable
@Deprecated public class ScheduledJobKey extends Object implements Serializable
Deprecated.since 8.0. UseJobId
instead.Known deletion blockers:
Identifier for a scheduled job. Immutable.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ScheduledJobKey(String jobId)
Deprecated.ScheduledJobKey(String group, String jobId)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
asString()
Deprecated.Returns the key in the following format:boolean
equals(Object o)
Deprecated.String
getGroup()
Deprecated.String
getJobId()
Deprecated.int
hashCode()
Deprecated.String
toString()
Deprecated.static ScheduledJobKey
valueOf(com.atlassian.scheduler.config.JobId jobId)
Deprecated.
-
-
-
Method Detail
-
getGroup
public String getGroup()
Deprecated.
-
getJobId
public String getJobId()
Deprecated.
-
asString
public String asString()
Deprecated.Returns the key in the following format:{group}#{jobId}
If group or jobId is null, then it will be returned as a blank.
This may be used as a key into Bandana, or other String keyed map.
-
valueOf
public static ScheduledJobKey valueOf(com.atlassian.scheduler.config.JobId jobId)
Deprecated.
-
-