public class MergepointMapping extends Object
Constructor and Description |
---|
MergepointMapping(String name)
Constructor.
|
MergepointMapping(String name,
List<MergepointAction> actions)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
addAction(MergepointAction action)
Adds an action to this mergepont mapping at the end of the action list.
|
boolean |
equals(Object obj) |
List<MergepointAction> |
getActions()
Returns the list of actions executed at the mergepoint.
|
String |
getName()
Returns the name of the mergepoint.
|
int |
hashCode() |
String |
toString() |
public MergepointMapping(String name)
name
- the name of the mergepoint, not null.IllegalArgumentException
- if name is null.public MergepointMapping(String name, List<MergepointAction> actions)
name
- the name of the mergepoint, not null.actions
- the actions in this mergepoint.IllegalArgumentException
- if name is null.public String getName()
public List<MergepointAction> getActions()
public void addAction(MergepointAction action)
action
- the action to add, not null.NullPointerException
- if action is null.Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.