You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@beehive.apache.org by "Kenneth Tam (JIRA)" <be...@incubator.apache.org> on 2005/02/28 23:26:49 UTC

[jira] Resolved: (BEEHIVE-197) @ControlExtension: conflicting samples on incubator.apache.org

     [ http://issues.apache.org/jira/browse/BEEHIVE-197?page=history ]
     
Kenneth Tam resolved BEEHIVE-197:
---------------------------------

     Assign To: James Song  (was: Kenneth Tam)
    Resolution: Fixed

Fixed docs @ svn rev #155707, may take some time to propagate to the website.



> @ControlExtension: conflicting samples on incubator.apache.org
> --------------------------------------------------------------
>
>          Key: BEEHIVE-197
>          URL: http://issues.apache.org/jira/browse/BEEHIVE-197
>      Project: Beehive
>         Type: Bug
>   Components: Controls
>     Versions: V1Beta
>     Reporter: James Song
>     Assignee: James Song
>     Priority: Minor
>      Fix For: V1Beta

>
> This is related to BEEHIVE-118, and Ken's plan on "Inheritance semantic analysis" and/or "Robust semantic analysis".
> http://incubator.apache.org/beehive/controls/controlsProgramming.html#11.1+Defining+an+Extended+Interface+for+a+Control+Type
> One sample:
> package org.apache.beehive.controls.examples;
> import org.apache.beehive.controls.api.bean.ControlExtension;
> @ControlInterface
> @Destination(type=JmsMessageControl.QUEUE, name="queue.orders")
> public interface OrderQueue extends JmsMessageControl
> {
>     ...
> }
> While the following one:
> package org.apache.beehive.controls.examples;
> import org.apache.beehive.controls.api.bean.ControlExtension;
> @ControlExtension
> @Destination(type=JmsMessageControl.QUEUE, name="queue.orders")
> public interface OrderQueue extends JmsMessageControl
> {
>     public class Order implements java.io.Serializable
>     {
>         public Order(int buyer, String list)  { buyerID = buyer; itemList  list; }
>         int buyerID;
>         String [ ] itemList;       
>     }
>     @Message (OBJECT)
>     public void submitOrder(
>       @Body Order order, 
>       @Property ( name="DeliverBy") String deliverBy
>     );
> }
> The confusion: user could use either @ControlInterface or @ControlExtension to declare an extended control interface.
> If user could use either @ControlExtension or @ControlInterface, more doc on when to use which one would be necessary.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira