|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.wso2.carbon.registry.core.Association
public class Association
This class is to store resource associations. Association can be made between 1. Registry Resource Paths. 2. Path with web url In addition to the source and target paths associations has a type. Dependency is a special case of association where the type field is always equal to Association.DEPENDS constant.
Field Summary | |
---|---|
static String |
DEPENDS
|
static String |
USED_BY
|
Constructor Summary | |
---|---|
Association()
Default constructor for the Association Class. |
|
Association(String sourcePath,
String destinationPath,
String associationType)
Construct an association by providing the source, target and the association type. |
Method Summary | |
---|---|
String |
getAssociationType()
Method to get the association type. |
String |
getDestinationPath()
Method to get the destination path. |
String |
getSourcePath()
Method to get the source path. |
void |
setAssociationType(String associationType)
Method to get the association type. |
void |
setDestinationPath(String destinationPath)
Method to set the destination path. |
void |
setSourcePath(String sourcePath)
Method to set the source path. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String DEPENDS
public static final String USED_BY
Constructor Detail |
---|
public Association()
public Association(String sourcePath, String destinationPath, String associationType)
sourcePath
- the source of the association.destinationPath
- the destination of the association.associationType
- the type of the association.Method Detail |
---|
public String getSourcePath()
public void setSourcePath(String sourcePath)
sourcePath
- the source path.public String getDestinationPath()
public void setDestinationPath(String destinationPath)
destinationPath
- the destination path.public String getAssociationType()
public void setAssociationType(String associationType)
associationType
- the association type.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |