2009/05/20 - Apache Shale has been retired.

For more information, please explore the Attic.

View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to you under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  
18  package org.apache.shale.examples.test.dialog.basic;
19  
20  import java.io.Serializable;
21  import org.apache.shale.dialog.DialogContext;
22  import org.apache.shale.dialog.DialogContextListener;
23  import org.apache.shale.dialog.base.AbstractDialogContextManagerListener;
24  
25  /***
26   * <p>Test implementation of DialogContextManagerListener.</p>
27   */
28  public class ManagerListener extends AbstractDialogContextManagerListener
29    implements Serializable {
30      
31  
32      // THe DialogContextListener we use to handle context events
33      private DialogContextListener listener = new ContextListener();
34  
35  
36      public void onCreate(DialogContext context) {
37  
38          // Log the fact that we are processing this event
39          System.out.println("ManagerListener.onCreate(name=" + context.getName()
40            + ", id=" + context.getId() + ")");
41  
42          // Register our manager listener on this instance
43          context.addDialogContextListener(listener);
44  
45          // In a real application, you might also do some intialization
46          // here to set up the "data" property on this context
47  
48      }
49  
50  
51      public void onRemove(DialogContext context) {
52  
53          // Log the fact that we are processing this event
54          System.out.println("ManagerListener.onInstall(name=" + context.getName()
55            + ", id=" + context.getId() + ")");
56  
57          // In a real application, you might also do some cleanup here
58          // to finish things up in the "data" property of this context
59  
60          // Register our manager listener on this instance
61          context.removeDialogContextListener(listener);
62  
63      }
64  
65  
66  }