|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.atlassian.bamboo.migration.BambooStAXMappingHelperAbstractImpl<T> com.atlassian.bamboo.migration.BambooStAXMappingListHelperAbstractImpl<PipelineDefinition> com.atlassian.bamboo.migration.stream.PipelineMapper
public class PipelineMapper
Field Summary | |
---|---|
static java.lang.String |
ALLOW_ANY_BUILDS
|
static java.lang.String |
CAPABILITY_BAMBOO_1_2_QUEUE
|
Constructor Summary | |
---|---|
PipelineMapper(net.sf.hibernate.SessionFactory sessionFactory,
CapabilitySetManager capabilitySetManager,
ElasticImageConfigurationAccessor elasticImageConfigurationAccessor,
LocalAgentManager localAgentManager)
|
Method Summary | |
---|---|
void |
afterImportListItem(org.codehaus.staxmate.in.SMInputCursor cursor,
java.util.List<PipelineDefinition> pipelineDefinitions,
PipelineDefinition pipeline,
long objectIndex,
net.sf.hibernate.Session session)
Called after parser completes parsing all child nodes in list's element node. |
void |
beforeImportListItem(org.codehaus.staxmate.in.SMInputCursor cursor,
java.util.List<PipelineDefinition> pipelineDefinitions,
net.sf.hibernate.Session session)
Called when parser reaches the list's element node. |
protected PipelineDefinition |
createItemInstance(org.codehaus.staxmate.in.SMInputCursor inputCursor)
Method returns only placeholder for pipeline data. |
void |
exportData(org.codehaus.staxmate.out.SMOutputElement outputElement)
Perform data export |
protected void |
exportProperties(org.codehaus.staxmate.out.SMOutputElement outputElement,
PipelineDefinition object,
net.sf.hibernate.Session session)
Export object properties. |
java.lang.String |
getXmlElementNodeName()
|
java.lang.String |
getXmlRootNodeName()
Returns local name of the XML parent node handled by this mapper |
void |
importData(org.codehaus.staxmate.in.SMInputCursor inputCursor)
Perform data import |
protected void |
importProperties(PipelineDefinition pipeline,
org.codehaus.staxmate.in.SMInputCursor inputCursor,
net.sf.hibernate.Session session)
Import properties to the object. |
Methods inherited from class com.atlassian.bamboo.migration.BambooStAXMappingListHelperAbstractImpl |
---|
createListRootElement, createRootElement, eventEndElementOfListItemSaveObject, exportListXml, exportListXml, importListXml, importListXml, setListImportStrategy |
Methods inherited from class com.atlassian.bamboo.migration.BambooStAXMappingHelperAbstractImpl |
---|
commitClearSession, commitSession, exportXml, exportXml, getSession, getSessionFactory, importXml, importXml, saveBambooObject |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.atlassian.bamboo.migration.BambooStAXMappingHelper |
---|
exportXml, importXml |
Field Detail |
---|
public static final java.lang.String CAPABILITY_BAMBOO_1_2_QUEUE
public static final java.lang.String ALLOW_ANY_BUILDS
Constructor Detail |
---|
public PipelineMapper(net.sf.hibernate.SessionFactory sessionFactory, CapabilitySetManager capabilitySetManager, ElasticImageConfigurationAccessor elasticImageConfigurationAccessor, LocalAgentManager localAgentManager)
Method Detail |
---|
@NotNull public java.lang.String getXmlElementNodeName()
public void beforeImportListItem(@NotNull org.codehaus.staxmate.in.SMInputCursor cursor, @NotNull java.util.List<PipelineDefinition> pipelineDefinitions, @NotNull net.sf.hibernate.Session session) throws java.lang.Exception
BambooStAXMappingListHelperAbstractImpl
beforeImportListItem
in class BambooStAXMappingListHelperAbstractImpl<PipelineDefinition>
cursor
- inputCursor pointing to the list's element opening nodepipelineDefinitions
- list of elements being importedsession
- Hibernate session object
java.lang.Exception
- when something went wrongpublic void afterImportListItem(@NotNull org.codehaus.staxmate.in.SMInputCursor cursor, @NotNull java.util.List<PipelineDefinition> pipelineDefinitions, @NotNull PipelineDefinition pipeline, long objectIndex, @NotNull net.sf.hibernate.Session session) throws java.lang.Exception
BambooStAXMappingListHelperAbstractImpl
afterImportListItem
in class BambooStAXMappingListHelperAbstractImpl<PipelineDefinition>
cursor
- cursor pointing to the list's element opening nodepipelineDefinitions
- list of elements being importedpipeline
- object that has been importedobjectIndex
- one-based index of the object being parsedsession
- Hibernate session object
java.lang.Exception
- when something went wrong@NotNull public java.lang.String getXmlRootNodeName()
BambooStAXRootMapper
getXmlRootNodeName
in interface BambooStAXMappingHelper<PipelineDefinition>
getXmlRootNodeName
in interface BambooStAXRootMapper
public void exportData(@NotNull org.codehaus.staxmate.out.SMOutputElement outputElement) throws java.lang.Exception
BambooStAXRootMapper
exportData
in interface BambooStAXRootMapper
outputElement
- parent node for mapper's root node, usually root element of the XML file
java.lang.Exception
- when something went wrongpublic void importData(@NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor) throws java.lang.Exception
BambooStAXRootMapper
importData
in interface BambooStAXRootMapper
inputCursor
- mapper's root node, usually child of root element of the XML file
java.lang.Exception
- when something went wrong@NotNull protected PipelineDefinition createItemInstance(@NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor) throws java.lang.Exception
createItemInstance
in class BambooStAXMappingHelperAbstractImpl<PipelineDefinition>
inputCursor
- input cursor that points to the parent node containing object properties
java.lang.Exception
javax.xml.stream.XMLStreamException
- when something went wrongprotected void exportProperties(@NotNull org.codehaus.staxmate.out.SMOutputElement outputElement, @NotNull PipelineDefinition object, @NotNull net.sf.hibernate.Session session) throws java.lang.Exception
BambooStAXMappingHelperAbstractImpl
exportProperties
in class BambooStAXMappingHelperAbstractImpl<PipelineDefinition>
outputElement
- the parent nodeobject
- object being exportedsession
- Hibernate session object
java.lang.Exception
- when something went wrongprotected void importProperties(@NotNull PipelineDefinition pipeline, @NotNull org.codehaus.staxmate.in.SMInputCursor inputCursor, @NotNull net.sf.hibernate.Session session) throws java.lang.Exception
BambooStAXMappingHelperAbstractImpl
importProperties
in class BambooStAXMappingHelperAbstractImpl<PipelineDefinition>
pipeline
- object being importedinputCursor
- input cursor pointing to the child node of node that was passed to importXml methodsession
- Hibernate session object
java.lang.Exception
- when something went wrong
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |