Package org.rhq.enterprise.server.xmlschema

Examples of org.rhq.enterprise.server.xmlschema.ScheduledJobDefinition


                // how is this possible that we got bad schedule data in the datamap? this isn't fatal, just log it and leave it null
                log.warn(logMsg(pluginName, pluginType, jobId, "ignoring bad schedule type found in data map ["
                    + scheduleTypeStr + "]", null));
            }

            ScheduledJobDefinition jobDefinition = new ScheduledJobDefinition(jobId, true, jobClass, jobMethodName,
                scheduleType, callbackData);
            ServerPluginContext pluginContext = pluginManager.getServerPluginContext(pluginEnv);
            params[0] = createContext(jobDefinition, pluginContext, pluginComponent,dataMap);
        } catch (NoSuchMethodException e) {
            try {
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.server.xmlschema.ScheduledJobDefinition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.