Uses of Class
org.glite.wms.wmproxy.AuthenticationFaultException

Uses of AuthenticationFaultException in org.glite.wms.wmproxy
 

Methods in org.glite.wms.wmproxy that throw AuthenticationFaultException
 java.lang.String WMProxyAPI.getProxyReq(java.lang.String delegationId)
          Gets a proxy identified by the delegationId string.
 void WMProxyAPI.putProxy(java.lang.String delegationId, java.lang.String cert)
          This method allows delegating user credential to the WMProxy server: it creates a proxy from the input certificate (got by a previous call to the createProxyfromCertReq server).
 java.lang.String WMProxyAPI.getVersion()
          Gets the version numbers of the WMProxy services
 org.glite.wms.wmproxy.JobIdStructType WMProxyAPI.jobRegister(java.lang.String jdl, java.lang.String delegationId)
          Registers a job for submission.The unique identifier assigned to the job is returned to the client.
 void WMProxyAPI.jobStart(java.lang.String jobId)
          Triggers the submission a previously registered job.
 org.glite.wms.wmproxy.JobIdStructType WMProxyAPI.jobSubmit(java.lang.String jdl, java.lang.String delegationId)
          Submits a job: performs registration and triggers the submission The JDL description of the job provided by the client is validated by the service, registered to the LB and finally passed to the Workload Manager.
 void WMProxyAPI.jobCancel(java.lang.String jobId)
          This operation cancels a previously submitted job identified by its JobId.
 double WMProxyAPI.getMaxInputSandboxSize()
          Returns the maximum Input sandbox size (in bytes) a user can count on for a job submission if using the space managed by the WM.
 org.glite.wms.wmproxy.StringList WMProxyAPI.getSandboxDestURI(java.lang.String jobId)
          Returns a list of destination URI's associated to the job, identified by the jobId provided as input, where the job input sandbox files can be uploaded by the client.
 org.glite.wms.wmproxy.DestURIsStructType WMProxyAPI.getSandboxBulkDestURI(java.lang.String jobId)
          Returns the list of destination URIs associated to a compound job (i.e.
 void WMProxyAPI.getTotalQuota(javax.xml.rpc.holders.LongHolder softLimit, javax.xml.rpc.holders.LongHolder hardLimit)
          Returns the total space quota assigned to the user on the storage managed by the WM The fault GetQuotaManagementFault is returned if the quota management is not active on the WM.
 void WMProxyAPI.getFreeQuota(javax.xml.rpc.holders.LongHolder softLimit, javax.xml.rpc.holders.LongHolder hardLimit)
          Returns the remaining free part of available user disk quota (in bytes).
 void WMProxyAPI.jobPurge(java.lang.String jobId)
          Removes from the WM managed space all files related to the job identified by the jobId provided as input.
 org.glite.wms.wmproxy.StringAndLongList WMProxyAPI.getOutputFileList(java.lang.String jobId)
          Returns the list of URIs where the output files created during job execution have been stored in the WM managed space and the corresponding sizes in bytes.
 org.glite.wms.wmproxy.StringAndLongList WMProxyAPI.jobListMatch(java.lang.String jdl, java.lang.String delegationId)
          Returns the list of CE Ids satisfying the job Requirements specified in the JDL, ordered according to the decreasing Rank.
 void WMProxyAPI.enableFilePerusal(java.lang.String jobId, org.glite.wms.wmproxy.StringList fileList)
          Enables file perusal functionalities if not disabled with the specific jdl attribute during job register operation.
 org.glite.wms.wmproxy.StringList WMProxyAPI.getPerusalFiles(java.lang.String jobId, java.lang.String file, boolean allchunks)
          Gets the URIs of perusal files generated during job execution for the specified file file.
 java.lang.String WMProxyAPI.getJobTemplate(org.glite.wms.wmproxy.JobTypeList jobType, java.lang.String executable, java.lang.String arguments, java.lang.String requirements, java.lang.String rank)
          Returns a JDL template for the requested job type.
 java.lang.String WMProxyAPI.getDAGTemplate(org.glite.wms.wmproxy.GraphStructType dependencies, java.lang.String requirements, java.lang.String rank)
          Returns a JDL template for a DAG.
 java.lang.String WMProxyAPI.getCollectionTemplate(int jobNumber, java.lang.String requirements, java.lang.String rank)
          Returns a JDL template for a collection of jobs, that is a set of independent jobs that can be submitted, controlled and monitored as a single entity.
 java.lang.String WMProxyAPI.getIntParametricJobTemplate(org.glite.wms.wmproxy.StringList attributes, int param, int parameterStart, int parameterStep, java.lang.String requirements, java.lang.String rank)
          Returns a JDL template for a parametric of job, which is a job having one or more parametric attributes in the JDL.
 java.lang.String WMProxyAPI.getStringParametricJobTemplate(org.glite.wms.wmproxy.StringList attributes, org.glite.wms.wmproxy.StringList param, java.lang.String requirements, java.lang.String rank)
          Returns a JDL template for a parametric of job, which is a job having one or more parametric attributes in the JDL.