Class JobEntryInfo
- java.lang.Object
-
- org.exoplatform.services.jcr.ext.backup.JobEntryInfo
-
public class JobEntryInfo extends Object
Created by The eXo Platform SAS. Author : Alex Reshetnyak alex.reshetnyak@exoplatform.com.ua Nov 28, 2007
-
-
Constructor Summary
Constructors Constructor Description JobEntryInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CalendargetDate()Get date.IntegergetID()Getting id to job.intgetState()Getting the state of job.intgetType()Getting type of job.URLgetURL()Getting URL to storage.voidsetDate(Calendar calendar)Setting date.voidsetID(Integer id)Setting id to job.voidsetState(int state)Setting state.voidsetType(int type)Setting type.voidsetURL(URL url)Setting storage URL.
-
-
-
Method Detail
-
getType
public int getType()
Getting type of job.- Returns:
- int return the type of job
-
getState
public int getState()
Getting the state of job.- Returns:
- iot return the state of job
-
getURL
public URL getURL()
Getting URL to storage.- Returns:
- URL return the url to storage
-
getDate
public Calendar getDate()
Get date.- Returns:
- Calendar return the time stamp
-
setType
public void setType(int type)
Setting type.- Parameters:
type- int, the type to job
-
setState
public void setState(int state)
Setting state.- Parameters:
state- int, the state to job
-
setURL
public void setURL(URL url)
Setting storage URL.- Parameters:
url- URL, the storage url
-
setDate
public void setDate(Calendar calendar)
Setting date.- Parameters:
calendar- Calendar, the time stamp
-
setID
public void setID(Integer id)
Setting id to job.- Parameters:
id- Integer, the id to job
-
getID
public Integer getID()
Getting id to job.- Returns:
- Integer return the id of job
-
-