|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JobManagerException | |
---|---|
org.icenigrid.gridsam.core | Package containing the core interfaces defining the JobManager API. |
org.icenigrid.gridsam.core.hostenv | |
org.icenigrid.gridsam.core.plugin | Package containing interfaces that define the Service Provider Interface (SPI) of GridSAM. |
org.icenigrid.gridsam.core.plugin.connector.globus | Package containing the Globus Toolkit 2.4.3 DRMConnector plugin. |
org.icenigrid.gridsam.core.plugin.manager | Package containing the default implementation of the DRMConnector and JobManager abstraction. |
org.icenigrid.gridsam.core.support.omii | |
org.icenigrid.gridsam.core.util |
Uses of JobManagerException in org.icenigrid.gridsam.core |
---|
Subclasses of JobManagerException in org.icenigrid.gridsam.core | |
---|---|
class |
ConfigurationException
Extension to JobManagerException that indicates a configuration error |
Methods in org.icenigrid.gridsam.core that throw JobManagerException | |
---|---|
JobInstance |
JobManager.findJobInstance(java.lang.String pID)
find a job instance using the job identifier |
JobInstance[] |
JobManager.findJobInstance(java.lang.String[] pIDs)
find a job instance using the job identifier |
void |
JobManager.registerChangeListener(java.lang.String pID,
JobInstanceChangeListener pChangeListener)
register a listener to listen to change to job |
JobInstance |
JobManager.rerunJob(java.lang.String pJobID,
JobState startState,
org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument pDesc,
boolean pStartSuspend)
Rerun a job from a specified stage and reuse the same working directory. |
JobInstance |
JobManager.startJob(java.lang.String pID)
Start a pending job. |
JobInstance[] |
JobManager.startJob(java.lang.String[] pIDs)
Start a set of pending jobs. |
JobInstance |
JobManager.submitJob(org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument pDesc)
submit a job to this JobManager instance. |
JobInstance[] |
JobManager.submitJob(org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument[] pDesc,
boolean pSuspended)
submit a set of jobs to this JobManager instance as a bulk operation. |
JobInstance |
JobManager.submitJob(org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument pDesc,
boolean pSuspended)
submit a job to this JobManager instances |
void |
JobManager.terminateJob(java.lang.String pID)
terminate the job identified |
void |
JobManager.terminateJob(java.lang.String[] pIDs)
terminate the jobs identified |
void |
JobManager.unregisterChangeListener(java.lang.String pID,
JobInstanceChangeListener pChangeListener)
unregister a previously registered listener with the given job ID |
Uses of JobManagerException in org.icenigrid.gridsam.core.hostenv |
---|
Methods in org.icenigrid.gridsam.core.hostenv that throw JobManagerException | |
---|---|
static java.lang.String |
SecurityProviderUtil.getCallerDN()
get caller's DN. |
static java.lang.String |
UserMappingUtil.getDefaultUserDN()
Get the userDN of the default user. |
static java.util.Map |
UserMappingUtil.getDefaultUserMapInfo()
Get the user mapping of the default users. |
static java.lang.String |
UserMappingUtil.getLocalHomePath(java.lang.String userDN)
To get the correponding home location for the UserDN on the indicated cluster. |
static java.lang.String |
UserMappingUtil.getLocalUN(java.lang.String userDN)
Get the local UserName using the corresponding Global UserMap |
static java.lang.String |
UserMappingUtil.getLocalUserGroup(java.lang.String userDN)
To get local user's group for the UserDN on the indicated cluster. |
java.lang.String |
ConfigUtil.getProperty(java.lang.String key,
java.lang.String defaultValue)
Get a property value of the default item. |
java.lang.String |
ConfigUtil.getProperty(java.lang.String key,
java.lang.String defaultValue,
java.lang.String itemID)
Get the property value of a specific item. |
static java.util.Map |
SecurityProviderUtil.getSiteInfo()
get information of the site. |
static java.util.Map |
UserMappingUtil.getUserMapInfo(java.lang.String userDN)
|
Constructors in org.icenigrid.gridsam.core.hostenv that throw JobManagerException | |
---|---|
ConfigUtil(java.lang.String configFileName)
Construct the ConfigUtil object from a config file name. |
Uses of JobManagerException in org.icenigrid.gridsam.core.plugin |
---|
Methods in org.icenigrid.gridsam.core.plugin that throw JobManagerException | |
---|---|
void |
JobContext.schedule(DRMConnector pConnector)
schedule the given DRMConnector for immediate execution in this job context for the current job |
void |
JobContext.schedule(DRMConnector pConnector,
long pRepeatInterval)
schedule the given DRMConnector for repeated execution in this job context for the current job |
void |
JobContext.schedule(DRMConnector pConnector,
java.lang.String pCronExpression)
schedule the given DRMConnector for repeated execution in this job context for the current job |
void |
JobManagerContext.schedule(JobInstance pJobInstance,
DRMConnector pConnector)
schedule the given DRMConnector for immediate execution in this job context for the given job |
void |
JobManagerContext.schedule(JobInstance pJobInstance,
DRMConnector pConnector,
long pRepeatInterval)
schedule the given DRMConnector for repeated execution in this job context for the given job |
void |
JobManagerContext.schedule(JobInstance pJobInstance,
DRMConnector pConnector,
java.lang.String pCronExpression)
schedule the given DRMConnector for repeated execution in this job context for the given job |
void |
JobManagerContext.schedule(JobInstance pJobInstance,
java.lang.String pConnectorName)
schedule the given named DRMConnector for immediate execution in this job context for the given job |
void |
JobManagerContext.schedule(JobInstance pJobInstance,
java.lang.String pConnectorName,
long pRepeatInterval)
schedule the given named DRMConnector for immediate execution in this job context for the given job |
void |
JobManagerContext.schedule(JobInstance pJobInstance,
java.lang.String pConnectorName,
java.lang.String pCronExpression)
schedule the given named DRMConnector for immediate execution in this job context for the given job |
void |
JobContext.schedule(java.lang.String pConnectorName)
schedule the given named DRMConnector for immediate execution in this job context for the current job |
void |
JobContext.schedule(java.lang.String pConnectorName,
long pRepeatInterval)
schedule the given named DRMConnector for immediate execution in this job context for the current job |
void |
JobContext.schedule(java.lang.String pConnectorName,
java.lang.String pCronExpression)
schedule the given named DRMConnector for immediate execution in this job context for the current job |
void |
JobManagerContext.scheduleImmediately()
get the DRMConnector that has been added by the schedule operations to be scheduled immediately. |
Uses of JobManagerException in org.icenigrid.gridsam.core.plugin.connector.globus |
---|
Methods in org.icenigrid.gridsam.core.plugin.connector.globus that throw JobManagerException | |
---|---|
static org.ietf.jgss.GSSCredential |
GlobusCredentialSupport.getCredential(JobContext pJob)
get a globus credential from the job context |
static org.ietf.jgss.GSSCredential |
GlobusCredentialSupport.loadCredential(JobContext pJobContext)
load the MyProxy credential as detailed in the JSDL document |
static org.ietf.jgss.GSSCredential |
GlobusCredentialSupport.loadCredential(MyProxyInfo myProxyInfo)
load the MyProxy credential, the myproxy info is given in MyProxyInfo |
static org.ietf.jgss.GSSCredential |
GlobusCredentialSupport.loadCredential(java.lang.String pProxyHost,
int pProxyPort,
java.lang.String pProxyUser,
java.lang.String pProxyPassword)
load the MyProxy credential as detailed in the JSDL document |
static org.ietf.jgss.GSSCredential |
GlobusCredentialSupport.loadCredential(java.lang.String pProxyHost,
int pProxyPort,
java.lang.String pProxyUser,
java.lang.String pProxyPassword,
java.lang.String pProxyServerDN,
int pProxyLifetime)
load the MyProxy credential as detailed in the JSDL document |
static org.ietf.jgss.GSSCredential |
GlobusCredentialSupport.loadCredential(java.lang.String pProxyHost,
java.lang.String pProxyUser,
java.lang.String pProxyPassword)
load the MyProxy credential as detailed in the JSDL document |
static MyProxyInfo |
GlobusCredentialSupport.loadMyProxyInfo(JobContext pJobContext)
load the MyProxyInfo as detailed in the JSDL document |
static void |
GlobusCredentialSupport.saveCredential(JobContext pJobContext,
org.ietf.jgss.GSSCredential pMyProxy)
save the MyProxy credential to the job context |
Uses of JobManagerException in org.icenigrid.gridsam.core.plugin.manager |
---|
Methods in org.icenigrid.gridsam.core.plugin.manager that throw JobManagerException | |
---|---|
protected void |
DefaultJobManagerContext.doSchedule(DRMConnectorDescriptor pDescriptor)
schedule an execution of a DRMConnector defined by the descriptor |
JobInstance |
DefaultJobManager.findJobInstance(java.lang.String pID)
find a job instance using the job identifier |
JobInstance[] |
DefaultJobManager.findJobInstance(java.lang.String[] pIDs)
|
void |
DefaultJobManager.registerChangeListener(java.lang.String pID,
JobInstanceChangeListener pChangeListener)
register a listener to listen to change to job |
JobInstance |
DefaultJobManager.rerunJob(java.lang.String pJobID,
JobState startState,
org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument pDesc,
boolean pSuspended)
rerun a job |
org.quartz.Trigger |
DRMConnectorDescriptor.resolveTrigger(java.lang.String pTriggerName,
java.lang.String pTriggerGroup)
get the trigger associated with this DRMConnector |
void |
DefaultJobContext.schedule(DRMConnector pConnector)
schedule the given DRMConnector for immediate execution in this job context |
protected void |
DefaultJobManagerContext.schedule(DRMConnectorDescriptor pDescriptor)
schedule an execution of a DRMConnector defined by the descriptor |
void |
DefaultJobContext.schedule(DRMConnector pConnector,
long pRepeatInterval)
schedule the given DRMConnector for repeated execution in this job context |
void |
DefaultJobContext.schedule(DRMConnector pConnector,
java.lang.String pCronExpression)
schedule the given DRMConnector for repeated execution in this job context |
void |
DefaultJobManagerContext.schedule(JobInstance pJobInstance,
DRMConnector pConnector)
schedule the given DRMConnector for immediate execution in this job context for the given job |
void |
DefaultJobManagerContext.schedule(JobInstance pJobInstance,
DRMConnector pConnector,
long pRepeatInterval)
schedule the given DRMConnector for repeated execution in this job context for the given job |
void |
DefaultJobManagerContext.schedule(JobInstance pJobInstance,
DRMConnector pConnector,
java.lang.String pCronExpression)
schedule the given DRMConnector for repeated execution in this job context for the given job |
void |
DefaultJobManagerContext.schedule(JobInstance pJobInstance,
java.lang.String pConnectorName)
schedule the given named DRMConnector for immediate execution in this job context for the given job |
void |
DefaultJobManagerContext.schedule(JobInstance pJobInstance,
java.lang.String pConnectorName,
long pRepeatInterval)
schedule the given named DRMConnector for immediate execution in this job context for the given job |
void |
DefaultJobManagerContext.schedule(JobInstance pJobInstance,
java.lang.String pConnectorName,
java.lang.String pCronExpression)
schedule the given named DRMConnector for immediate execution in this job context for the given job |
void |
DefaultJobContext.schedule(java.lang.String pConnectorName)
schedule the given named DRMConnector for immediate execution in this job context |
void |
DefaultJobContext.schedule(java.lang.String pConnectorName,
long pRepeatInterval)
schedule the given named DRMConnector for immediate execution in this job context |
void |
DefaultJobContext.schedule(java.lang.String pConnectorName,
java.lang.String pCronExpression)
schedule the given named DRMConnector for immediate execution in this job context |
void |
DefaultJobManagerContext.scheduleImmediately()
get the DRMConnector that has been added by the schedule operations to be scheduled immediately |
JobInstance |
DefaultJobManager.startJob(java.lang.String pID)
Start a pending job. |
JobInstance[] |
DefaultJobManager.startJob(java.lang.String[] pIDs)
|
JobInstance |
DefaultJobManager.submitJob(org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument pDesc)
submit a job to this JobManager instance. |
JobInstance[] |
DefaultJobManager.submitJob(org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument[] pDesc,
boolean pSuspended)
|
JobInstance |
DefaultJobManager.submitJob(org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument pDesc,
boolean pSuspended)
submit a job to this JobManager instances |
void |
DefaultJobManager.terminateJob(java.lang.String pID)
terminate the job identified |
void |
DefaultJobManager.terminateJob(java.lang.String[] pIDs)
|
void |
DefaultJobManager.unregisterChangeListener(java.lang.String pID,
JobInstanceChangeListener pChangeListener)
unregister a previously registered listener with the given job ID |
Uses of JobManagerException in org.icenigrid.gridsam.core.support.omii |
---|
Constructors in org.icenigrid.gridsam.core.support.omii that throw JobManagerException | |
---|---|
UserMapperSupport()
default constructor. |
Uses of JobManagerException in org.icenigrid.gridsam.core.util |
---|
Methods in org.icenigrid.gridsam.core.util that throw JobManagerException | |
---|---|
static ConfigUtil |
HPCGSupport.getConfigUtil()
|
static boolean |
SecurityConfigUtil.isEnableSecurity()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |