blob: fb3fb822199d73f82025abbdcc093789edc88798 [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.Collection;
import java.util.List;
import javax.lang.model.type.TypeMirror;
import org.netbeans.modules.j2ee.dd.api.ejb.Session;
import org.netbeans.modules.j2ee.ejbverification.EJBAPIAnnotations;
import org.netbeans.modules.j2ee.ejbverification.EJBProblemContext;
import org.netbeans.modules.j2ee.ejbverification.HintsUtils;
import org.netbeans.modules.j2ee.ejbverification.JavaUtils;
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;
/**
* Only stateful session bean(SFSB) can implement SessionSynchronization i/f.
*
* @author Sanjeeb.Sahoo@Sun.COM, Tomasz.Slota@Sun.COM, Martin Fousek <marfous@netbeans.org>
*/
@Hint(displayName = "#SessionSynchImplementedBySFSBOnly.display.name",
description = "#SessionSynchImplementedBySFSBOnly.err",
id = "o.n.m.j2ee.ejbverification.SessionSynchImplementedBySFSBOnly",
category = "javaee/ejb",
enabled = true,
suppressWarnings = "SessionSynchImplementedBySFSBOnly")
@NbBundle.Messages({
"SessionSynchImplementedBySFSBOnly.display.name=SessionSynchronization implemted by non-SFSB",
"SessionSynchImplementedBySFSBOnly.err=Only stateful session bean (SFSB) can implement SessionSynchronization interface."
})
public final class SessionSynchImplementedBySFSBOnly {
private SessionSynchImplementedBySFSBOnly() {
}
@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) {
return problems;
}
if (ctx.getEjb() instanceof Session) {
if (Session.SESSION_TYPE_STATEFUL.equals(ctx.getEjbData().getSessionType())) {
return problems; // OK, stateful session bean
}
}
for (TypeMirror iface : ctx.getClazz().getInterfaces()) {
String ifaceName = JavaUtils.extractClassNameFromType(iface);
if (EJBAPIAnnotations.SESSION_SYNCHRONIZATION.equals(ifaceName)) {
ErrorDescription err = HintsUtils.createProblem(ctx.getClazz(), hintContext.getInfo(), Bundle.SessionSynchImplementedBySFSBOnly_err());
problems.add(err);
}
}
return problems;
}
}