Packagecom.adobe.csxs.types
Classpublic class Job

Representation of a job (long running operation).



Public Properties
 PropertyDefined by
  id : String
[read-only] Returns the unique id of this Job.
Job
  longDescription : String
[read-only] Returns the long description.
Job
  owner : String
[read-only] Returns the owner, which is the extension id.
Job
  shortDescription : String
[read-only] Returns the short description.
Job
  title : String
[read-only] Returns the title.
Job
Public Methods
 MethodDefined by
  
Job(title:String, shortDescription:String = null, longDescription:String = null)
Constructs a new Job.
Job
Property detail
idproperty
id:String  [read-only]

Returns the unique id of this Job.

Implementation
    public function get id():String
longDescriptionproperty 
longDescription:String  [read-only]

Returns the long description.

Implementation
    public function get longDescription():String
ownerproperty 
owner:String  [read-only]

Returns the owner, which is the extension id.

Implementation
    public function get owner():String
shortDescriptionproperty 
shortDescription:String  [read-only]

Returns the short description.

Implementation
    public function get shortDescription():String
titleproperty 
title:String  [read-only]

Returns the title.

Implementation
    public function get title():String
Constructor detail
Job()constructor
public function Job(title:String, shortDescription:String = null, longDescription:String = null)

Constructs a new Job.

Parameters
title:String — The title.
 
shortDescription:String (default = null) — The short description; defaults to null.
 
longDescription:String (default = null) — The long description; defaults to null.