blob: 260f2469d0073e621a3886d60e8662abe053c171 [file] [log] [blame]
/*
* Copyright (c) 2017, 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.sun.s1as.devtests.ejb.generics;
import java.util.*;
import jakarta.ejb.*;
@Stateless
public class TestBean extends AbstractBaseEJB<Object> {
@Override
public void doSomething(List<Object> t) {
System.out.println("In doSomething of " + this);
}
@Override
public void doSomething2(List<Object> t) {
System.out.println("In doSomething2 of " + this);
}
@Override
public List<Object> doSomething3() {
System.out.println("In doSomething3 of " + this);
return null;
}
public void doSomething4(Integer t) {
System.out.println("In doSomething4(Integer) of " + this);
}
@Override
public void doSomething4(Object t) {
System.out.println("In doSomething4(Object T) of " + this);
}
public void doSomething4(String t) {
System.out.println("In doSomething4(String) of " + this);
}
@Override
public String hello() {
System.out.println("In hello of " + this);
return "hello from " + this;
}
//superclass has param List<T>, and subclass has param List
@Override
public void doSomething5(List t) {
System.out.println("In doSomething5 of " + this);
}
@Override
public void doSomething6(List<List<Object>> t) {
System.out.println("In doSomething6 of " + this);
}
}