blob: 5fc1a7fe0813bca97f600693c2b7300f9770acbc [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.
*/
/**
* This interface has all of the bean info accessor methods.
*
* @Generated
*/
package org.netbeans.modules.j2ee.dd.api.webservices;
import org.netbeans.modules.j2ee.dd.api.common.Icon;
public interface WebserviceDescription extends org.netbeans.modules.j2ee.dd.api.common.CommonDDBean{
public static final String WEBSERVICE_DESCRIPTION_NAME = "WebserviceDescriptionName"; // NOI18N
public static final String WEBSERVICEDESCRIPTIONNAMEID = "WebserviceDescriptionNameId"; // NOI18N
public static final String WSDL_FILE = "WsdlFile"; // NOI18N
public static final String JAXRPC_MAPPING_FILE = "JaxrpcMappingFile"; // NOI18N
public static final String PORT_COMPONENT = "PortComponent"; // NOI18N
public void setId(java.lang.String value);
public java.lang.String getId();
public void setDescription(java.lang.String value);
public java.lang.String getDescription();
public void setDescriptionId(java.lang.String value);
public java.lang.String getDescriptionId();
public void setDescriptionXmlLang(java.lang.String value);
public java.lang.String getDescriptionXmlLang();
public void setDisplayName(java.lang.String value);
public java.lang.String getDisplayName();
public void setDisplayNameId(java.lang.String value);
public java.lang.String getDisplayNameId();
public void setDisplayNameXmlLang(java.lang.String value);
public java.lang.String getDisplayNameXmlLang();
public void setIcon(Icon value);
public Icon getIcon();
public Icon newIcon();
public void setWebserviceDescriptionName(java.lang.String value);
public java.lang.String getWebserviceDescriptionName();
public void setWebserviceDescriptionNameId(java.lang.String value);
public java.lang.String getWebserviceDescriptionNameId();
public void setWsdlFile(java.lang.String value);
public java.lang.String getWsdlFile();
public void setJaxrpcMappingFile(java.lang.String value);
public java.lang.String getJaxrpcMappingFile();
public void setPortComponent(int index, PortComponent value);
public PortComponent getPortComponent(int index);
public int sizePortComponent();
public void setPortComponent(PortComponent[] value);
public PortComponent[] getPortComponent();
public int addPortComponent(org.netbeans.modules.j2ee.dd.api.webservices.PortComponent value);
public int removePortComponent(org.netbeans.modules.j2ee.dd.api.webservices.PortComponent value);
public PortComponent newPortComponent();
}