blob: f2e15f43d100f64e7094fdcc1e0c1507a4dc7c83 [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.core.extensions.quarkus.showcase.view;
import java.io.Serializable;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.enterprise.context.ApplicationScoped;
import javax.faces.event.PhaseEvent;
import javax.faces.event.PhaseId;
import javax.faces.event.PhaseListener;
import javax.inject.Inject;
import javax.inject.Named;
@Named
@ApplicationScoped
public class MethodHandleELResolverBean implements Serializable, PhaseListener {
@Inject
CarService service;
private List<Car> cars;
private int test;
private String test2;
private long start;
@PostConstruct
public void init() {
cars = service.createCars(20000);
}
public List<Car> getCars() {
return cars;
}
public void setCars(List<Car> cars) {
this.cars = cars;
}
public int getTest() {
return test;
}
public void setTest(int test) {
this.test = test;
}
public String getTest2() {
return test2;
}
public void setTest2(String test2) {
this.test2 = test2;
}
@Override
public void afterPhase(PhaseEvent event) {
System.err.println((System.currentTimeMillis() - start) + "ms");
}
@Override
public void beforePhase(PhaseEvent event) {
start = System.currentTimeMillis();
}
@Override
public PhaseId getPhaseId() {
return PhaseId.RENDER_RESPONSE;
}
}