Class AceMapper

java.lang.Object
com.atlassian.bamboo.migration.BambooStAXMappingHelperAbstractImpl<T,I>
com.atlassian.bamboo.migration.BambooStAXMappingListHelperAbstractImpl<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>
com.atlassian.bamboo.migration.stream.AceMapper
All Implemented Interfaces:
BambooStAXMappingHelper<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>

public class AceMapper extends BambooStAXMappingListHelperAbstractImpl<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>
  • Constructor Details

    • AceMapper

      protected AceMapper(org.hibernate.SessionFactory sessionFactory, @NotNull @NotNull org.springframework.transaction.support.TransactionOperations transactionOperations)
  • Method Details

    • getXmlElementNodeName

      @NotNull public @NotNull String getXmlElementNodeName()
      Overrides:
      getXmlElementNodeName in class BambooStAXMappingListHelperAbstractImpl<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>
    • getXmlRootNodeName

      @NotNull public @NotNull String getXmlRootNodeName()
      Description copied from interface: BambooStAXMappingHelper
      Returns local name of the XML parent node that will contain exported/imported object's properties
      Specified by:
      getXmlRootNodeName in interface BambooStAXMappingHelper<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>
      Overrides:
      getXmlRootNodeName in class BambooStAXMappingListHelperAbstractImpl<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>
      Returns:
      local name of the XML parent node
    • createItemInstance

      @NotNull protected @NotNull com.atlassian.bamboo.migration.stream.AceBean createItemInstance(org.codehaus.staxmate.in.SMInputCursor inputCursor) throws Exception
      Description copied from class: BambooStAXMappingHelperAbstractImpl
      Creates empty instance of the imported object
      Specified by:
      createItemInstance in class BambooStAXMappingHelperAbstractImpl<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>
      Parameters:
      inputCursor - input cursor that points to the parent node containing object properties
      Returns:
      empty instance of the imported object
      Throws:
      XMLStreamException - when something went wrong
      Exception
    • exportProperties

      protected void exportProperties(@NotNull @NotNull org.codehaus.staxmate.out.SMOutputElement outputElement, @NotNull @NotNull com.atlassian.bamboo.migration.stream.AceBean object, @NotNull @NotNull org.hibernate.Session session, ExportDetailsBean exportDetailsBean) throws Exception
      Description copied from class: BambooStAXMappingHelperAbstractImpl
      Export object properties. Implementing classed should override this method to export custom properties.
      Overrides:
      exportProperties in class BambooStAXMappingHelperAbstractImpl<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>
      Parameters:
      outputElement - the parent node
      object - object being exported
      session - Hibernate session object
      Throws:
      Exception - when something went wrong
    • importProperties

      protected void importProperties(@NotNull @NotNull com.atlassian.bamboo.migration.stream.AceBean object, @NotNull @NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull @NotNull org.hibernate.Session session) throws Exception
      Description copied from class: BambooStAXMappingHelperAbstractImpl
      Import properties to the object. Due to nature of XML parsing this method is called for each child node in the node that was passed to importXml method
      Overrides:
      importProperties in class BambooStAXMappingHelperAbstractImpl<com.atlassian.bamboo.migration.stream.AceBean,com.atlassian.bamboo.migration.stream.AceBean>
      Parameters:
      object - object being imported
      inputCursor - input cursor pointing to the child node of node that was passed to importXml method
      session - Hibernate session object
      Throws:
      Exception - when something went wrong