blob: e093bea1b3ad42eb09719aa8847148b0ad9e3a94 [file] [log] [blame]
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.tests;
@jakarta.annotation.ManagedBean
public class TestManagedBean {
public static final String TOSTRING = "TestManagedBean";
protected int postConstructCount = 0;
protected int preDestroyCount = 0;
protected String postConstructMessage = "";
protected String preDestroyMessage = "";
@jakarta.annotation.PostConstruct
public void init() {
postConstructCount++;
postConstructMessage += TOSTRING + "#PostConstruct";
System.out.println(postConstructMessage);
}
@jakarta.annotation.PreDestroy
public void destroy() {
preDestroyCount++;
preDestroyMessage += TOSTRING + "#PreDestroy";
System.out.println(preDestroyMessage);
}
@Tester
public void foo() {
System.out.println(toString() + "#foo called");
}
public boolean testPostConstructCalled() {
return (postConstructCount > 0);
}
public int getPostConstructCount() {
return postConstructCount;
}
public int getPreDestroyCount() {
return preDestroyCount;
}
public String getPostConstructMessage() {
return postConstructMessage;
}
public String getPreDestroyMessage() {
return preDestroyMessage;
}
@Override
public String toString() {
return TOSTRING;
}
}