blob: 01f7cad334b7cc54342880c037b8077d35de91cc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.tobago.example.test;
import javax.enterprise.context.SessionScoped;
import javax.inject.Named;
import java.io.Serializable;
@SessionScoped
@Named
public class ZIndexController implements Serializable {
private Boolean modal1 = true;
private Boolean modal2 = true;
public Boolean getModal1() {
return modal1;
}
public void setModal1(final Boolean modal1) {
this.modal1 = modal1;
}
public Boolean getModal2() {
return modal2;
}
public void setModal2(final Boolean modal2) {
this.modal2 = modal2;
}
}