Uses of Class
com.nurelm.util.NuPlatformException

Packages that use NuPlatformException
com.nurelm.util   
 

Uses of NuPlatformException in com.nurelm.util
 

Methods in com.nurelm.util that throw NuPlatformException
static java.lang.String WebUtil.convertServerNameToDomain(java.lang.String serverName)
          This method typically accepts a String that is obtained via request.getServerName().
static java.lang.String NuPlatformUtil.getSiteId(javax.servlet.ServletContext sc)
          Gets siteId init parameter (set in web.xml).
static java.lang.String NuPlatformUtil.getEmailDomain(javax.servlet.ServletContext sc, javax.servlet.http.HttpServletRequest request)
          Returns the site's e-mail domain name.
static java.lang.String ImageUtil.reduceIfNeeded(java.lang.String originalImagePathFileName, float newMaxHeight, float newMaxWidth)
           
static java.lang.String ImageUtil.reduceAndDeleteOldIfNeeded(java.lang.String originalImagePathFileName, java.lang.String newMaxHeight, java.lang.String newMaxWidth)
          If the passed in dimensions are smaller than the image, the image is reduced in size.
static void ImageUtil.resize(java.lang.String originalImageFileName, java.lang.String newImageFilename, float newMaxHeight, float newMaxWidth)
          Resizes the originalImageFileName to the same proportions, but maximum dimensions of newMaxHeight X newMaxWidth (in pixels).
static java.lang.String ImageUtil.convertFileNameToResizedJpeg(java.lang.String pathFileName)
          Changes the file extension to "jpg" and returns the new string.
static java.lang.String FormUtil.emailForm(java.lang.String formName, java.lang.String[] emailTo, java.lang.String emailFrom, java.lang.String subject, java.lang.String successMessage, java.lang.String formFields, java.lang.String showEmptyFields, javax.servlet.http.HttpServletRequest request)
          Emails form data to a specified email address.
static java.lang.String CurrencyUtil.format(java.lang.String currencyNumber, java.lang.String currencyCode)
          Returns the currencyNumber in its correct currency format based on the passed-in ISO 4217 currency code.
static java.lang.String CurrencyUtil.format(double currencyNumber, java.lang.String currencyCode)
          DOCUMENT ME!