Class LoadBehaviour

    • Constructor Detail

      • LoadBehaviour

        public LoadBehaviour()
    • Method Detail

      • setClassName

        public void setClassName​(String className)
        Sets the name of the class of the behaviour to load
      • getClassName

        public String getClassName()
        Returns:
        the name of the class of the behaviour to load
      • setCode

        public void setCode​(byte[] code)
        Sets the code of the class of the behaviour to load. code must be filled with the content of the class file of the behaviour to load. If the behaviour requires other classes, the setZip() method must be used instead.
      • getCode

        public byte[] getCode()
        Returns:
        the code of the class of the behaviour to load.
      • setZip

        public void setZip​(byte[] zip)
        Sets the code of the behaviour to load as the content of a zip file.
      • getZip

        public byte[] getZip()
        Returns:
        the code of the behaviour to load as the content of a zip file.
      • setParameters

        public void setParameters​(List parameters)
        Set the list of parameters to be passed to the behaviour. These parameters will be inserted into the behaviour DataStore
      • getParameters

        public List getParameters()
        Returns:
        the list of parameters to be passed to the behaviour.