Class ArtifactHolder
- java.lang.Object
-
- org.apache.synapse.aspects.flow.statistics.data.artifact.ArtifactHolder
-
public class ArtifactHolder extends Object
This class is to create object which holds properties related to a single artifact
-
-
Constructor Summary
Constructors Constructor Description ArtifactHolder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getExitFromBox()
int
getHashCode()
String
getHashCodeAsString()
int
getId()
String
getIdString()
String
getLastParent()
ArrayList<StructuringElement>
getList()
String
getParent()
Stack<StructuringElement>
getStack()
void
setExitFromBox(boolean exitFromBox)
void
setHashCode(int hashCode)
void
setId(int id)
void
setLastParent(String lastParent)
void
setList(ArrayList<StructuringElement> list)
void
setParent(String parent)
void
setStack(Stack<StructuringElement> stack)
-
-
-
Method Detail
-
setParent
public void setParent(String parent)
-
getIdString
public String getIdString()
-
getHashCodeAsString
public String getHashCodeAsString()
-
getId
public int getId()
-
setId
public void setId(int id)
-
setHashCode
public void setHashCode(int hashCode)
-
getHashCode
public int getHashCode()
-
getParent
public String getParent()
-
getList
public ArrayList<StructuringElement> getList()
-
setList
public void setList(ArrayList<StructuringElement> list)
-
getStack
public Stack<StructuringElement> getStack()
-
setStack
public void setStack(Stack<StructuringElement> stack)
-
getLastParent
public String getLastParent()
-
setLastParent
public void setLastParent(String lastParent)
-
getExitFromBox
public boolean getExitFromBox()
-
setExitFromBox
public void setExitFromBox(boolean exitFromBox)
-
-