Package de.xima.fc.utils
Class ProcessingUtils
java.lang.Object
de.xima.fc.utils.ProcessingUtils
Deprecated.
This is part of the old deprecated workflow engine. Use the new workflow engine and related classes.
Manager-Instance for all registered and available
IProcessing-Implementations- Author:
- XIMA MEDIA GmbH
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends IProcessing>
VerarbeitungsParameterMapextractParameters(T processing) Deprecated.static Map<String,Class<? extends IProcessing>> Deprecated.static Map<String,Class<? extends IProcessing>> Deprecated.static IProcessinggetEmptyProcessing(String key, Mandant man) Deprecated.static Class<? extends IProcessing>getProcessingClass(String key) Deprecated.static Class<? extends IProcessing>getProcessingClass(String key, Mandant man) Deprecated.static <T extends IProcessing>
TloadParameters(VerarbeitungsParameterMap params, T processing) Deprecated.static VerarbeitungsParameterMapreadParameter(String verarbeitungsParameter) Deprecated.static voidregisterProcessing(Mandant man, Class<? extends IProcessing> processing) Deprecated.Registers anIProcessingfor the specified client wide by using his key (seeIProcessing.getProcessingKey()).static voidregisterProcessing(Class<? extends IProcessing> processing) Deprecated.Registers anIProcessingsystem-wide by using his key (seeIProcessing.getProcessingKey()).static StringwriteParameter(VerarbeitungsParameterMap saveParameter) Deprecated.
-
Constructor Details
-
ProcessingUtils
public ProcessingUtils()Deprecated.
-
-
Method Details
-
registerProcessing
public static void registerProcessing(Class<? extends IProcessing> processing) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException Deprecated.Registers anIProcessingsystem-wide by using his key (seeIProcessing.getProcessingKey()). Already used keys will override the current registered processing!- Parameters:
processing-IProcessing-Class to register- Throws:
InstantiationException- if an error occurs while instantiate the processing for reading the processing-keyIllegalAccessException- if an error occurs while instantiate the processing for reading the processing-keySecurityException- on errorsNoSuchMethodException- on errorsInvocationTargetException- on errorsIllegalArgumentException- on errors
-
registerProcessing
public static void registerProcessing(Mandant man, Class<? extends IProcessing> processing) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException Deprecated.Registers anIProcessingfor the specified client wide by using his key (seeIProcessing.getProcessingKey()). Already used keys will override the current registered processing! If the client isnull, the processing will be registeres usingregisterProcessing(Class).- Parameters:
processing-IProcessing-Class to registerman-Mandantto register the processing for- Throws:
InstantiationException- if an error occurs while instantiate the processing for reading the processing-keyIllegalAccessException- if an error occurs while instantiate the processing for reading the processing-keySecurityException- on errorsNoSuchMethodException- on errorsInvocationTargetException- on errorsIllegalArgumentException- on errors
-
getProcessingClass
Deprecated. -
getProcessingClass
Deprecated. -
getAvailableProcessings
Deprecated. -
getAvailableProcessings
Deprecated. -
getEmptyProcessing
Deprecated. -
loadParameters
public static <T extends IProcessing> T loadParameters(VerarbeitungsParameterMap params, T processing) Deprecated. -
extractParameters
Deprecated. -
readParameter
Deprecated. -
writeParameter
Deprecated.
-