Codota Logo
SubmissionStepConfig.getProcessingClassName
Code IndexAdd Codota to your IDE (free)

How to use
getProcessingClassName
method
in
org.dspace.app.util.SubmissionStepConfig

Best Java code snippets using org.dspace.app.util.SubmissionStepConfig.getProcessingClassName (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
OutputStreamWriter o =
  • Codota IconOutputStream out;new OutputStreamWriter(out)
  • Codota IconOutputStream out;String charsetName;new OutputStreamWriter(out, charsetName)
  • Codota IconHttpURLConnection connection;new OutputStreamWriter(connection.getOutputStream())
  • Smart code suggestions by Codota
}
origin: org.dspace/dspace-jspui-api

      + stepConfig.getProcessingClassName() + "'");
    .getProcessingClassName());
    + stepConfig.getProcessingClassName() + "':", e);
JSPManager.showInternalError(request, response);
origin: DSpace/DSpace

/**
 * Constructs a new Submission Configuration object, based on the XML
 * configuration file (item-submission.xml)
 *
 * @param submissionName the submission process name
 * @param steps          the vector listing of step information to build
 *                       SubmissionStepConfig objects for this submission process
 */
public SubmissionConfig(boolean isDefault, String submissionName, List<Map<String, String>> steps) {
  this.submissionName = submissionName;
  this.defaultConf = isDefault;
  // initialize a vector of SubmissionStepConfig objects
  List<SubmissionStepConfig> stepConfigs = new ArrayList<SubmissionStepConfig>();
  // loop through our steps, and create SubmissionStepConfig objects
  for (int stepNum = 0; stepNum < steps.size(); stepNum++) {
    Map<String, String> stepInfo = steps.get(stepNum);
    SubmissionStepConfig step = new SubmissionStepConfig(stepInfo);
    // set the number of the step (starts at 0) and add it
    step.setStepNumber(stepNum);
    stepConfigs.add(step);
    log.debug("Added step '" + step.getProcessingClassName()
           + "' as step #" + step.getStepNumber()
           + " of submission process " + submissionName);
  }
  // get steps as an array of Strings
  submissionSteps = stepConfigs
    .toArray(new SubmissionStepConfig[stepConfigs.size()]);
}
origin: org.dspace/dspace-jspui-api

  .loadClass(stepConfig.getProcessingClassName());
throw new Exception("The submission step class specified by '" + stepConfig.getProcessingClassName() + 
    "' does not extend the class org.dspace.submit.AbstractProcessingStep!" +
    " Therefore it cannot be used by the Configurable Submission as the <processing-class>!");
origin: org.dspace/dspace-xmlui-api

Class<?> stepClass = loader.loadClass(currentStep.getProcessingClassName());
        + currentStep.getProcessingClassName()
        + "' Error:", e);
origin: org.dspace/dspace-jspui-api

  + currentStepConfig.getProcessingClassName() + "'");
log.error("Error loading step class'" + currentStepConfig.getProcessingClassName() + "':", e);
JSPManager.showInternalError(request, response);
org.dspace.app.utilSubmissionStepConfiggetProcessingClassName

Javadoc

Get the class which handles all processing for this step.

This class must extend the org.dspace.submit.AbstractProcessingStep class, and provide processing for BOTH the JSP-UI and XML-UI

Popular methods of SubmissionStepConfig

  • getStepNumber
  • getId
  • <init>
    Class constructor for creating a SubmissionStepConfig object based on the contents of a HashMap init
  • getJSPUIClassName
  • getType
    Retrieve the name of the component used by this step in the UI
  • getXMLUIClassName
  • isVisible
  • setStepNumber
    Sets the number of this step in the current Submission process config. Step numbers start with #0 (a

Popular in Java

  • Start an intent from android
  • notifyDataSetChanged (ArrayAdapter)
  • getContentResolver (Context)
  • startActivity (Activity)
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • SortedSet (java.util)
    A Set that further provides a total ordering on its elements. The elements are ordered using their C
  • Vector (java.util)
    The Vector class implements a growable array of objects. Like an array, it contains components that
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Runner (org.openjdk.jmh.runner)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now