KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > bean > RecordingBean


1 package org.jahia.clipbuilder.html.bean;
2
3 import java.util.*;
4
5 /**
6  * Description of the Class
7  *
8  *@author Tlili Khaled
9  */

10 public class RecordingBean {
11     private int statut;
12     private UrlBean currentUrlBean;
13
14     /**
15      * Description of the Field
16      */

17     public static final int START = 1;
18
19     /**
20      * Description of the Field
21      */

22     public static final int STOP = 0;
23     private static org.apache.log4j.Logger logger = org.apache.log4j.Logger.getLogger(RecordingBean.class);
24
25
26     /**
27      * Constructor for the RecordingBean object
28      *
29      *@param statut Description of Parameter
30      */

31     public RecordingBean(int statut) {
32         setStatut(statut);
33     }
34
35
36     /**
37      * Sets the Statut attribute of the RecordingBean object
38      *
39      *@param statut The new Statut value
40      */

41     public void setStatut(int statut) {
42         this.statut = statut;
43     }
44
45
46     /**
47      * Sets the CurrentUrl attribute of the RecordingBean object
48      *
49      *@param uBean The new CurrentUrlBean value
50      */

51     public void setCurrentUrlBean(UrlBean uBean) {
52         currentUrlBean = uBean;
53     }
54
55
56     /**
57      * Gets the Statut attribute of the RecordingBean object
58      *
59      *@return The Statut value
60      */

61     public int getStatut() {
62         return statut;
63     }
64
65
66     /**
67      * Gets the CurrentArrayList attribute of the RecordingBean object
68      *
69      *@return The CurrentArrayList value
70      */

71     public List getCurrentArrayList() {
72         return currentUrlBean.getFormParamBeanList();
73     }
74
75
76     /**
77      * Gets the CurrentUrl attribute of the RecordingBean object
78      *
79      *@return The CurrentUrl value
80      */

81     public String JavaDoc getCurrentUrl() {
82         return currentUrlBean.getAbsoluteUrlValue();
83     }
84
85
86     /**
87      * Gets the CurrentUrlBean attribute of the RecordingBean object
88      *
89      *@return The CurrentUrlBean value
90      */

91     public UrlBean getCurrentUrlBean() {
92         return currentUrlBean;
93     }
94
95
96     /**
97      * Description of the Method
98      */

99     public void resetRecord() {
100
101     }
102 }
103
Popular Tags