Class TableExportConfig


  • public class TableExportConfig
    extends java.lang.Object
    Configuration information for exporting.
    Author:
    Kim Rutherford
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)
      java.lang.String getClassName()
      Get the class name of the exporter eg.
      java.lang.String getId()
      Return the id of this TableExportConfig.
      java.lang.String getOptionsTileName()
      Get the optionsTileName of this TableExportConfig - ie.
      int hashCode()
      void setClassName​(java.lang.String className)
      Set the className of this TableExportConfig
      void setId​(java.lang.String id)
      Set the id of this TableExportConfig
      void setOptionsTileName​(java.lang.String optionsTileName)
      Set the optionsTileName of this TableExportConfig
      java.lang.String toString()
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • TableExportConfig

        public TableExportConfig()
    • Method Detail

      • getId

        public java.lang.String getId()
        Return the id of this TableExportConfig.
        Returns:
        the id
      • setId

        public void setId​(java.lang.String id)
        Set the id of this TableExportConfig
        Parameters:
        id - the new id
      • getOptionsTileName

        public java.lang.String getOptionsTileName()
        Get the optionsTileName of this TableExportConfig - ie. the tile to be inserted into the export options page for this type of export. Returns null if there is no tile for this type.
        Returns:
        the options tile name
      • setOptionsTileName

        public void setOptionsTileName​(java.lang.String optionsTileName)
        Set the optionsTileName of this TableExportConfig
        Parameters:
        optionsTileName - the new options tile name
      • getClassName

        public java.lang.String getClassName()
        Get the class name of the exporter eg. org.intermine.bio.web.export.SequenceHttpExporter
        Returns:
        the className
      • setClassName

        public void setClassName​(java.lang.String className)
        Set the className of this TableExportConfig
        Parameters:
        className - the new className
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
        Parameters:
        obj - the Object to compare with
        Returns:
        true if this is equal to obj
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        the hashCode for this TableExportConfig object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object