1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19 package org.apache.myfaces.custom.selectitems;
20
21 /**
22 * @author cagatay (latest modification by $Author: lu4242 $)
23 * @version $Revision: 783163 $ $Date: 2009-06-09 18:37:19 -0500 (Mar, 09 Jun 2009) $
24 * Simple test entity
25 */
26 public class Movie {
27 private String name;
28
29 private String director;
30
31 private boolean disabled;
32
33 private Boolean escaped;
34
35 public Movie() {}
36
37 public Movie(String name, String director) {
38 this.name = name;
39 this.director = director;
40 this.disabled = false;
41 this.escaped = Boolean.TRUE;
42 }
43
44 public String getName() {
45 return name;
46 }
47 public void setName(String name) {
48 this.name = name;
49 }
50
51 public String getDirector() {
52 return director;
53 }
54 public void setDirector(String director) {
55 this.director = director;
56 }
57
58 public boolean isDisabled()
59 {
60 return disabled;
61 }
62
63 public void setDisabled(boolean disabled)
64 {
65 this.disabled = disabled;
66 }
67
68 public Boolean getEscaped()
69 {
70 return escaped;
71 }
72
73 public void setEscaped(Boolean escaped)
74 {
75 this.escaped = escaped;
76 }
77 }