blob: 54962af0e3f8aeea141448659fb79b89d462676a [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.netbeans.modules.j2ee.ejbverification.rules;
import com.sun.source.tree.Tree;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.TreeSet;
import java.util.logging.Logger;
import org.netbeans.modules.j2ee.dd.api.ejb.Session;
import org.netbeans.modules.j2ee.ejbverification.EJBProblemContext;
import org.netbeans.modules.j2ee.ejbverification.HintsUtils;
import org.netbeans.spi.editor.hints.ErrorDescription;
import org.netbeans.spi.java.hints.Hint;
import org.netbeans.spi.java.hints.HintContext;
import org.netbeans.spi.java.hints.TriggerTreeKind;
import org.openide.util.NbBundle;
/**
* The same business interface cannot be both a local and a remote business interface of the bean.
*
* @author Tomasz.Slota@Sun.COM, Martin Fousek <marfous@netbeans.org>
*/
@Hint(displayName = "#BeanHasDifferentLBIandRBI.display.name",
description = "#BeanHasDifferentLBIandRBI.err",
id = "o.n.m.j2ee.ejbverification.BeanHasDifferentLBIandRBI",
category = "javaee/ejb",
enabled = true,
suppressWarnings = "BeanHasDifferentLBIandRBI")
@NbBundle.Messages({
"BeanHasDifferentLBIandRBI.display.name=Local and Remote business inteface together",
"BeanHasDifferentLBIandRBI.err=The same business interface cannot be both a local and a remote business interface of the bean."
})
public final class BeanHasDifferentLBIandRBI {
private static final Logger LOG = Logger.getLogger(BeanHasDifferentLBIandRBI.class.getName());
private BeanHasDifferentLBIandRBI() {
}
@TriggerTreeKind(Tree.Kind.CLASS)
public static Collection<ErrorDescription> run(HintContext hintContext) {
final List<ErrorDescription> problems = new ArrayList<>();
final EJBProblemContext ctx = HintsUtils.getOrCacheContext(hintContext);
if (ctx != null && ctx.getEjb() instanceof Session) {
final Collection<String> localInterfaces = new TreeSet<>();
localInterfaces.addAll(Arrays.asList(ctx.getEjbData().getBusinessLocal()));
for (String remoteInterface : ctx.getEjbData().getBusinessRemote()) {
if (localInterfaces.contains(remoteInterface)) {
ErrorDescription problem = HintsUtils.createProblem(
ctx.getClazz(),
hintContext.getInfo(),
Bundle.BeanHasDifferentLBIandRBI_err());
problems.add(problem);
}
}
}
return problems;
}
}