Interface IMaskFactory

All Known Implementing Classes:
DefaultMaskFactory, LinkedMaskFactory, MaskFactory

public interface IMaskFactory
Factory responsible for creating mask implementations.
Since:
6.0
Author:
Jon van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    getMask(ApplicationID moduleId, String maskTypeName)
    This method should return a mask implementation for a specific application module and mask type name.
  • Method Details

    • getMask

      IMask getMask(ApplicationID moduleId, String maskTypeName)
      This method should return a mask implementation for a specific application module and mask type name.
      Parameters:
      moduleId - The ID of the module, may not be null.
      maskTypeName - The mask type name, may not be null.
      Returns:
      The mask implementation.
      Throws:
      PortalException - When no mask could be created.