Uses of Interface
pt.digitalis.dif.controller.interfaces.IDIFContext

Packages that use IDIFContext
pt.digitalis.dif.codegen.templates   
pt.digitalis.dif.controller   
pt.digitalis.dif.controller.interfaces   
pt.digitalis.dif.controller.objects   
pt.digitalis.dif.dem.interfaces   
pt.digitalis.dif.dem.objects.issues   
pt.digitalis.dif.dem.objects.parameters   
pt.digitalis.dif.dem.objects.parameters.types   
pt.digitalis.dif.dem.objects.parameters.validators   
pt.digitalis.dif.exception   
pt.digitalis.dif.exception.controller   
pt.digitalis.dif.exception.objects   
pt.digitalis.dif.sanitycheck.manager   
pt.digitalis.dif.utils.extensions   
 

Uses of IDIFContext in pt.digitalis.dif.codegen.templates
 

Methods in pt.digitalis.dif.codegen.templates that return IDIFContext
 IDIFContext StageInstanceCGTemplate.getContext()
           
 

Methods in pt.digitalis.dif.codegen.templates with parameters of type IDIFContext
 void StageInstanceCGTemplate.__Stage__InjectedAttributesInitMethod__(IDIFContext difContext)
          This method will be used by the code gen module to set the annotated attributes.
 void StageInstanceCGTemplate.__Stage__PostProcessingMethod__(IDIFContext difContext)
          This method will be used by the framework to do some post processing work.
 ViewObject StageInstanceCGTemplate._CG_execute(IDIFContext context)
           
 boolean StageInstanceCGTemplate._CG_finalize(IDIFContext context)
           
 boolean StageInstanceCGTemplate._CG_init(IDIFContext context)
           
 Object StageInstanceCGTemplate.callEventMethod(IDIFContext context, EventType type, String eventName)
           
 ViewObject StageInstanceCGTemplate.callExecuteMethod(IDIFContext context)
           
 ViewObject StageInstanceCGTemplate.callExecuteOnEventMethod(IDIFContext context, EventType type, String eventName)
           
protected  boolean StageInstanceCGTemplate.callFinalizeMethod(IDIFContext context)
          The method that will be enhanced with the call to the method annotated with @Finalize.
protected  boolean StageInstanceCGTemplate.callInitMethod(IDIFContext context)
          The method that will be enhanced with the call to the method annotated with @DIFInitializer.
static String TemplateResources.getRequestParameter(IDIFContext context, String id)
          returns a given parameter form the request
 void StageInstanceCGTemplate.setContext(IDIFContext newContext)
           
 ViewObject TemplateResources.stageExecute(IStageInstance stageInstance, IDIFContext context)
          The stage execute logic
 

Uses of IDIFContext in pt.digitalis.dif.controller
 

Fields in pt.digitalis.dif.controller declared as IDIFContext
protected  IDIFContext AbstractDIFDispatcher.difContext
          The execution context.
 

Methods in pt.digitalis.dif.controller that return IDIFContext
protected  IDIFContext AbstractDIFDispatcher.getContext()
          Inspector for the execution context.
 

Methods in pt.digitalis.dif.controller with parameters of type IDIFContext
static void ExceptionHandlers.handleException(IDIFContext context, Exception exception)
          Handles redirection actions for a given exsception.
static void AbstractDIFDispatcher.performCleanup(IDIFContext context, boolean success)
          Perform any clean up tasks that have been contributed by ...
 

Uses of IDIFContext in pt.digitalis.dif.controller.interfaces
 

Methods in pt.digitalis.dif.controller.interfaces with parameters of type IDIFContext
 void IAuthenticationPlugin.doAfterLogin(IDIFContext context)
          Executes the necessary action after a login is executed by the DIF Dispatcher Authentication step
 void IAuthenticationPlugin.doAfterLogout(IDIFContext context)
          Executes the necessary action after a logout is executed by the DIF Dispatcher Authentication step
 void IAuthenticationPlugin.doBeforeLogin(IDIFContext context)
          Executes the necessary action before a login is executed by the DIF Dispatcher Authentication step
 void IAuthenticationPlugin.doBeforeLogout(IDIFContext context)
          Executes the necessary action before a logout is executed by the DIF Dispatcher Authentication step
 void IControllerCleanupTask.doTask(IDIFContext context, boolean success)
          Performs the clean up task
 boolean IAuthenticationPlugin.validateUser(IDIFContext context, String user, String password)
          Executes the user validation
 

Uses of IDIFContext in pt.digitalis.dif.controller.objects
 

Classes in pt.digitalis.dif.controller.objects that implement IDIFContext
 class DIFContext
          This class is the base class for the DIF execution context.
 

Uses of IDIFContext in pt.digitalis.dif.dem.interfaces
 

Methods in pt.digitalis.dif.dem.interfaces that return IDIFContext
 IDIFContext IStageInstance.getContext()
          Returns the execution context.
 

Methods in pt.digitalis.dif.dem.interfaces with parameters of type IDIFContext
 ViewObject IStageInstance._CG_execute(IDIFContext context)
          The business logic executing method.
 boolean IStageInstance._CG_finalize(IDIFContext context)
          The finalization method.
 boolean IStageInstance._CG_init(IDIFContext context)
          The initialization method.
 Object IStageInstance.callEventMethod(IDIFContext context, EventType type, String eventName)
          The method that will be enhanced with the call to the correct event method.
 ViewObject IStageInstance.callExecuteMethod(IDIFContext context)
          The method that will be enhanced with the call to the method annotated with @Execute.
 ViewObject IStageInstance.callExecuteOnEventMethod(IDIFContext context, EventType type, String eventName)
          The method that will be enhanced with the call to the method annotated with @Execute.
 void IStageInstance.setContext(IDIFContext context)
          Sets the execution context on the Stage.
 

Uses of IDIFContext in pt.digitalis.dif.dem.objects.issues
 

Methods in pt.digitalis.dif.dem.objects.issues that return IDIFContext
 IDIFContext UsageIssue.getContext()
          Inspector for the 'context' attribute.
 

Methods in pt.digitalis.dif.dem.objects.issues with parameters of type IDIFContext
 void UsageIssue.setContext(IDIFContext context)
          Modifier for the 'context' attribute.
 

Uses of IDIFContext in pt.digitalis.dif.dem.objects.parameters
 

Methods in pt.digitalis.dif.dem.objects.parameters with parameters of type IDIFContext
 T IParameter.getValue(IDIFContext context)
          Returns the parameter value.
 BigDecimal IParameter.getValueAsBigDecimal(IDIFContext context)
           
 boolean IParameter.getValueAsBoolean(IDIFContext context)
           
 Date IParameter.getValueAsDate(IDIFContext context)
           
 DocumentRepositoryEntry IParameter.getValueAsDocument(IDIFContext context)
          Returns the parameter value as a Document Note: Only Document types parameters will correctly respond to this method.
 Double IParameter.getValueAsDouble(IDIFContext context)
           
 Long IParameter.getValueAsLong(IDIFContext context)
           
 String IParameter.getValueAsString(IDIFContext context)
          Returns the parameter value as a String
 

Uses of IDIFContext in pt.digitalis.dif.dem.objects.parameters.types
 

Methods in pt.digitalis.dif.dem.objects.parameters.types with parameters of type IDIFContext
protected  String AbstractParameter.getLanguage(IDIFContext context)
          Return the language from the context of the default if not available
 Boolean BooleanParameter.getValue(IDIFContext context)
           
 T AbstractParameter.getValue(IDIFContext context)
           
 BigDecimal StringParameter.getValueAsBigDecimal(IDIFContext context)
           
 BigDecimal LongParameter.getValueAsBigDecimal(IDIFContext context)
           
 BigDecimal DoubleParameter.getValueAsBigDecimal(IDIFContext context)
           
 BigDecimal DocumentParameter.getValueAsBigDecimal(IDIFContext context)
           
 BigDecimal DateParameter.getValueAsBigDecimal(IDIFContext context)
           
 BigDecimal BooleanParameter.getValueAsBigDecimal(IDIFContext context)
           
 BigDecimal BigDecimalParameter.getValueAsBigDecimal(IDIFContext context)
           
 boolean StringParameter.getValueAsBoolean(IDIFContext context)
           
 boolean LongParameter.getValueAsBoolean(IDIFContext context)
           
 boolean DoubleParameter.getValueAsBoolean(IDIFContext context)
           
 boolean DocumentParameter.getValueAsBoolean(IDIFContext context)
           
 boolean DateParameter.getValueAsBoolean(IDIFContext context)
           
 boolean BooleanParameter.getValueAsBoolean(IDIFContext context)
           
 boolean BigDecimalParameter.getValueAsBoolean(IDIFContext context)
           
 Date StringParameter.getValueAsDate(IDIFContext context)
           
 Date LongParameter.getValueAsDate(IDIFContext context)
           
 Date DoubleParameter.getValueAsDate(IDIFContext context)
           
 Date DocumentParameter.getValueAsDate(IDIFContext context)
           
 Date DateParameter.getValueAsDate(IDIFContext context)
           
 Date BooleanParameter.getValueAsDate(IDIFContext context)
           
 Date BigDecimalParameter.getValueAsDate(IDIFContext context)
           
 DocumentRepositoryEntry DocumentParameter.getValueAsDocument(IDIFContext context)
           
 DocumentRepositoryEntry AbstractParameter.getValueAsDocument(IDIFContext context)
           
 Double StringParameter.getValueAsDouble(IDIFContext context)
           
 Double LongParameter.getValueAsDouble(IDIFContext context)
           
 Double DoubleParameter.getValueAsDouble(IDIFContext context)
           
 Double DocumentParameter.getValueAsDouble(IDIFContext context)
           
 Double DateParameter.getValueAsDouble(IDIFContext context)
           
 Double BooleanParameter.getValueAsDouble(IDIFContext context)
           
 Double BigDecimalParameter.getValueAsDouble(IDIFContext context)
           
 Long StringParameter.getValueAsLong(IDIFContext context)
           
 Long LongParameter.getValueAsLong(IDIFContext context)
           
 Long DoubleParameter.getValueAsLong(IDIFContext context)
           
 Long DocumentParameter.getValueAsLong(IDIFContext context)
           
 Long DateParameter.getValueAsLong(IDIFContext context)
           
 Long BooleanParameter.getValueAsLong(IDIFContext context)
           
 Long BigDecimalParameter.getValueAsLong(IDIFContext context)
           
 String DocumentParameter.getValueAsString(IDIFContext context)
           
 String DateParameter.getValueAsString(IDIFContext context)
           
 String BooleanParameter.getValueAsString(IDIFContext context)
           
 String AbstractParameter.getValueAsString(IDIFContext context)
           
protected  boolean AbstractParameter.hasFormBeenSubmited(IDIFContext context)
           
 

Uses of IDIFContext in pt.digitalis.dif.dem.objects.parameters.validators
 

Methods in pt.digitalis.dif.dem.objects.parameters.validators with parameters of type IDIFContext
 boolean IParameterValidator.validate(Object value, IDIFContext context)
          Validates the given value
 

Uses of IDIFContext in pt.digitalis.dif.exception
 

Methods in pt.digitalis.dif.exception that return IDIFContext
 IDIFContext InternalFrameworkException.getDIFContext()
          Returns the stored DIFContext.
 

Methods in pt.digitalis.dif.exception with parameters of type IDIFContext
 void InternalFrameworkException.setDifContext(IDIFContext difContext)
          Sets the DIFContext content.
 

Constructors in pt.digitalis.dif.exception with parameters of type IDIFContext
InternalFrameworkException(Exception exception, IDIFContext difContext)
          Constructs a new InternalFrameworkException from an Exception.
InternalFrameworkException(String reason, Exception exception, IDIFContext difContext)
          Constructs a new InternalFrameworkException accepting a reason for the exception
InternalFrameworkException(String reason, IDIFContext difContext)
          Constructs a new InternalFrameworkException from a reason for the exception.
 

Uses of IDIFContext in pt.digitalis.dif.exception.controller
 

Constructors in pt.digitalis.dif.exception.controller with parameters of type IDIFContext
BusinessFlowException(Exception exception, IDIFContext difContext)
          Constructs a new BusinessFlowException from an Exception.
BusinessFlowException(String reason, Exception exception, IDIFContext difContext)
          Constructs a new BusinessFlowException accepting a reason for the exception
BusinessFlowException(String reason, IDIFContext difContext)
          Constructs a new BusinessFlowException from a reason for the exception.
 

Uses of IDIFContext in pt.digitalis.dif.exception.objects
 

Methods in pt.digitalis.dif.exception.objects with parameters of type IDIFContext
 void ParameterException.setContext(IDIFContext context)
           
 

Uses of IDIFContext in pt.digitalis.dif.sanitycheck.manager
 

Methods in pt.digitalis.dif.sanitycheck.manager with parameters of type IDIFContext
 TestResult TestMethodDefinition.run(IDIFContext context)
          Runs the test
static boolean SanityCheckManager.runAllTests(IDIFContext context)
          Execute all tests
static boolean SanityCheckManager.runAllTests(IDIFContext context, boolean testOnlyErrors)
          Execute all tests.
 

Constructors in pt.digitalis.dif.sanitycheck.manager with parameters of type IDIFContext
SanityCheckThread(IDIFContext context)
          Instantiates a new sanity check thread.
 

Uses of IDIFContext in pt.digitalis.dif.utils.extensions
 

Methods in pt.digitalis.dif.utils.extensions with parameters of type IDIFContext
 String ICaptcha.getCaptchaRequiredValue(IDIFContext context)
          Fetches the captcha required generated form the current stage context request
 String ICaptcha.getCaptchaSubmitedValue(IDIFContext context)
          Fetches the captcha value form the current stage context request
 boolean ICaptcha.isCaptchaValueValid(IDIFContext context)
          Validates the submited captcha value
 



Copyright © 2014 Digitalis Informática Lda. All Rights Reserved.