blob: 72965c4aebffbc16d8ca585aaf485cf87b88a5d0 [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.ejbcore.action;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import javax.lang.model.element.Modifier;
import org.netbeans.modules.j2ee.core.api.support.java.method.MethodModel;
import org.netbeans.modules.j2ee.dd.api.ejb.EntityAndSession;
import org.netbeans.modules.j2ee.ejbcore.util._RetoucheUtil;
import org.openide.filesystems.FileObject;
/**
*
* @author Martin Adamek
*/
public class HomeMethodGenerator extends AbstractMethodGenerator {
private HomeMethodGenerator(String ejbClass, FileObject ejbClassFileObject) {
super(ejbClass, ejbClassFileObject);
}
public static HomeMethodGenerator create(String ejbClass, FileObject ejbClassFileObject) {
return new HomeMethodGenerator(ejbClass, ejbClassFileObject);
}
/**
* Generates home method.
* <p>
* <b>Should be called outside EDT.</b>
*/
public void generate(MethodModel methodModel, boolean generateLocal, boolean generateRemote) throws IOException {
Map<String, String> interfaces = getInterfaces();
String local = interfaces.get(EntityAndSession.LOCAL);
String localHome = interfaces.get(EntityAndSession.LOCAL_HOME);
String remote = interfaces.get(EntityAndSession.REMOTE);
String remoteHome = interfaces.get(EntityAndSession.HOME);
// local interface
if (generateLocal && localHome != null) {
MethodModel methodModelCopy = MethodModel.create(
methodModel.getName(),
methodModel.getReturnType(),
null,
methodModel.getParameters(),
methodModel.getExceptions(),
Collections.<Modifier>emptySet()
);
FileObject fileObject = _RetoucheUtil.resolveFileObjectForClass(ejbClassFileObject, localHome);
addMethod(methodModelCopy, fileObject, localHome);
}
// remote interface
if (generateRemote && remoteHome != null) {
List<String> exceptions = exceptions = new ArrayList<String>(methodModel.getExceptions());
if (!methodModel.getExceptions().contains("java.rmi.RemoteException")) {
exceptions.add("java.rmi.RemoteException");
}
MethodModel methodModelCopy = MethodModel.create(
methodModel.getName(),
methodModel.getReturnType(),
null,
methodModel.getParameters(),
exceptions,
Collections.<Modifier>emptySet()
);
FileObject fileObject = _RetoucheUtil.resolveFileObjectForClass(ejbClassFileObject, remoteHome);
addMethod(methodModelCopy, fileObject, remoteHome);
}
// ejb class
MethodModel methodModelCopy = MethodModel.create(
"ejbHome" + Character.toUpperCase(methodModel.getName().charAt(0)) + methodModel.getName().substring(1),
methodModel.getReturnType(),
methodModel.getBody(),
methodModel.getParameters(),
methodModel.getExceptions(),
Collections.singleton(Modifier.PUBLIC)
);
addMethod(methodModelCopy, ejbClassFileObject, ejbClass);
}
}