Class WSAssociation


  • public class WSAssociation
    extends Object
    This class is used as a data transfer object class in web service calls. It encapsulates data in org.wso2.carbon.registry.core.Association class. The above mentioned class cannot be directly used as a argument/return type of a web service.
    • Constructor Detail

      • WSAssociation

        public WSAssociation()
        Default constructor for the WSAssociation class. It just creates an empty association.
      • WSAssociation

        public WSAssociation​(String sourcePath,
                             String destinationPath,
                             String associationType)
        Construct an association by providing the source, target and the association type.
        Parameters:
        sourcePath - the source of the association.
        destinationPath - the destination of the association.
        associationType - the type of the association.
    • Method Detail

      • getSourcePath

        public String getSourcePath()
        Method to get the source path.
        Returns:
        the source path.
      • setSourcePath

        public void setSourcePath​(String sourcePath)
        Method to set the source path.
        Parameters:
        sourcePath - the source path.
      • getDestinationPath

        public String getDestinationPath()
        Method to get the destination path.
        Returns:
        the destination path.
      • setDestinationPath

        public void setDestinationPath​(String destinationPath)
        Method to set the destination path.
        Parameters:
        destinationPath - the destination path.
      • getAssociationType

        public String getAssociationType()
        Method to get the association type.
        Returns:
        the association type.
      • setAssociationType

        public void setAssociationType​(String associationType)
        Method to get the association type.
        Parameters:
        associationType - the association type.