blob: ff3b8c3b53b8952693946b8888eba5b1f03a0cab [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.maven.jaxws;
import org.netbeans.api.java.project.JavaProjectConstants;
import org.netbeans.api.project.Project;
import org.netbeans.api.project.ProjectUtils;
import org.netbeans.api.project.SourceGroup;
import org.netbeans.modules.maven.jaxws.nodes.JaxWsClientNode;
import org.netbeans.modules.maven.jaxws.nodes.JaxWsNode;
import org.netbeans.modules.websvc.jaxws.light.api.JAXWSLightSupport;
import org.netbeans.modules.websvc.jaxws.light.api.JaxWsService;
import org.netbeans.modules.websvc.project.api.ServiceDescriptor;
import org.netbeans.modules.websvc.project.api.WebService;
import org.netbeans.modules.websvc.project.api.WebService.Type;
import org.netbeans.modules.websvc.project.spi.WebServiceImplementation;
import org.openide.filesystems.FileObject;
import org.openide.nodes.Node;
/**
*
* @author mkuchtiak
*/
public class MavenWebService implements WebServiceImplementation {
public static final String CLIENT_PREFIX = "_C_"; //NOI18N
public static final String SERVICE_PREFIX = "_S_"; //NOI18N
private JaxWsService service;
private Project prj;
/** Constructor.
*
* @param service JaxWsService
* @param prj project
*/
public MavenWebService(JaxWsService service, Project prj) {
this.service = service;
this.prj = prj;
}
@Override
public String getIdentifier() {
if (service.isServiceProvider()) {
return service.getImplementationClass();
} else {
return service.getId();
}
}
@Override
public boolean isServiceProvider() {
return service.isServiceProvider();
}
@Override
public Type getServiceType() {
return WebService.Type.SOAP;
}
@Override
public ServiceDescriptor getServiceDescriptor() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Node createNode() {
if (service.isServiceProvider()) {
SourceGroup[] srcGroups = ProjectUtils.getSources(prj).getSourceGroups(
JavaProjectConstants.SOURCES_TYPE_JAVA);
String implClass = service.getImplementationClass();
for (SourceGroup srcGroup : srcGroups) {
FileObject srcRoot = srcGroup.getRootFolder();
FileObject implClassFo = getImplementationClass(implClass, srcRoot);
if (implClassFo != null) {
return new JaxWsNode(service, srcRoot, implClassFo);
}
}
} else {
return new JaxWsClientNode(JAXWSLightSupport.getJAXWSLightSupport(prj.getProjectDirectory()), service);
}
return null;
}
private FileObject getImplementationClass(String implClass, FileObject srcRoot) {
if (implClass != null && srcRoot != null) {
return srcRoot.getFileObject(implClass.replace('.', '/') + ".java"); //NOI18N
}
return null;
}
}