
org.globus.gram.GramJobRun Maven / Gradle / Ivy
/*
* Copyright 1999-2006 University of Chicago
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.globus.gram;
import org.ietf.jgss.GSSCredential;
import org.ietf.jgss.GSSException;
public class GramJobRun extends GramJob implements Runnable {
String resourceManagerContact = null;
private GramJobRun( GSSCredential cred, String rsl ) {
super( cred, rsl );
}
private GramJobRun( String rsl ) {
super( rsl );
}
public GramJobRun( String rsl,
String resourceManagerContact ) {
super( rsl );
this.resourceManagerContact = resourceManagerContact;
}
public void run() {
try {
request( resourceManagerContact );
} catch( GSSException gpe ) {
System.err.println( "Error: " + gpe.getMessage() );
setStatus( STATUS_FAILED );
} catch( GramException ge ) {
System.err.println( "Error: " + ge.getMessage() );
setStatus( STATUS_FAILED );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy