Interface MiniBodyService


@Deprecated public interface MiniBodyService
Deprecated.
The Portal functionality will be removed in a future release. Use the Tempo Interface for similar functionality.
Defines methods for manipulating the body of miniwebsite portlets.
  • Field Details

    • readWebsiteBody$UPDATES

      static final boolean readWebsiteBody$UPDATES
      Deprecated.
      See Also:
    • createWebsiteBody$UPDATES

      static final boolean createWebsiteBody$UPDATES
      Deprecated.
      See Also:
    • updateWebsiteBody$UPDATES

      static final boolean updateWebsiteBody$UPDATES
      Deprecated.
      See Also:
    • copyWebsiteBody$UPDATES

      static final boolean copyWebsiteBody$UPDATES
      Deprecated.
      See Also:
    • deleteWebsiteBody$UPDATES

      static final boolean deleteWebsiteBody$UPDATES
      Deprecated.
      See Also:
  • Method Details

    • readWebsiteBody

      String readWebsiteBody(String id_) throws AppianException
      Deprecated.
      Reads the body of a miniwebsite portlet
      Parameters:
      id_ - The ID of a miniwebsite portlet
      Returns:
      The String body, if found; null, if not found.
      Throws:
      AppianException - if any error is encountered executing the method
    • createWebsiteBody

      void createWebsiteBody(String id_, String text_) throws AppianException
      Deprecated.
      Stores the body of a miniwebsite portlet
      Parameters:
      id_ - The ID of a miniwebsite portlet
      text_ - The body to be stored
      Throws:
      AppianException - if any error is encountered executing the method
    • updateWebsiteBody

      void updateWebsiteBody(String id_, String text_) throws AppianException
      Deprecated.
      Updates the body of a miniwebsite portlet
      Parameters:
      id_ - The ID of a miniwebsite portlet
      text_ - The body to be updated
      Throws:
      AppianException - if any error is encountered executing the method
    • copyWebsiteBody

      void copyWebsiteBody(String newId_, String oldId_) throws FileNotFoundException, AppianException
      Deprecated.
      Copies the body of one miniwebsite portlet to another
      Parameters:
      newId_ - The ID of the miniwebsite portlet that is to be updated
      oldId_ - The ID of the miniwebsite portlet that is to be copied
      Throws:
      FileNotFoundException - if the miniwebsite portlet that is to be updated is not found
      AppianException - if any error is encountered executing the method
    • deleteWebsiteBody

      void deleteWebsiteBody(String id_) throws AppianException
      Deprecated.
      Deletes the body of a miniwebsite portlet
      Parameters:
      id_ - The ID of a miniwebsite portlet
      Throws:
      AppianException - if any error is encountered executing the method