Codota Logo
WebEndpoint.<init>
Code IndexAdd Codota to your IDE (free)

How to use
javax.xml.ws.WebEndpoint
constructor

Best Java code snippets using javax.xml.ws.WebEndpoint.<init> (Showing top 20 results out of 2,259)

Refine searchRefine arrow

  • QName.<init>
  • Common ways to obtain WebEndpoint
private void myMethod () {
WebEndpoint w =
  • Codota IconMethod method;method.getAnnotation(WebEndpoint.class)
  • Smart code suggestions by Codota
}
origin: citerus/dddsample-core

/**
 * 
 * @param features
 *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
 * @return
 *     returns HandlingReportService
 */
@WebEndpoint(name = "HandlingReportServicePort")
public HandlingReportService getHandlingReportServicePort(WebServiceFeature... features) {
  return (HandlingReportService)super.getPort(new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "HandlingReportServicePort"), HandlingReportService.class, features);
}
origin: citerus/dddsample-core

/**
 * 
 * @return
 *     returns HandlingReportService
 */
@WebEndpoint(name = "HandlingReportServicePort")
public HandlingReportService getHandlingReportServicePort() {
  return (HandlingReportService)super.getPort(new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "HandlingReportServicePort"), HandlingReportService.class);
}
origin: yidao620c/SpringBootBucket

/**
 * 
 * @param features
 *     A list of {@link WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
 * @return
 *     returns CommonService
 */
@WebEndpoint(name = "CommonServiceImplPort")
public CommonService getCommonServiceImplPort(WebServiceFeature... features) {
  return super.getPort(new QName("http://model.webservice.xncoding.com/", "CommonServiceImplPort"), CommonService.class, features);
}
origin: yidao620c/SpringBootBucket

/**
 * 
 * @return
 *     returns CommonService
 */
@WebEndpoint(name = "CommonServiceImplPort")
public CommonService getCommonServiceImplPort() {
  return super.getPort(new QName("http://model.webservice.xncoding.com/", "CommonServiceImplPort"), CommonService.class);
}
origin: org.mil-oss/fgsms-common-interfaces

/**
 * PCS Port
 * 
 * @return
 *     returns PCS
 */
@WebEndpoint(name = "PCSPort")
public PCS getPCSPort() {
  return super.getPort(new QName("urn:org:miloss:fgsms:services:interfaces:policyConfiguration", "PCSPort"), PCS.class);
}
origin: org.mil-oss/fgsms-common-interfaces

/**
 * Status Port
 * 
 * @return
 *     returns StatusService
 */
@WebEndpoint(name = "statusServicePort")
public StatusService getStatusServicePort() {
  return super.getPort(new QName("urn:org:miloss:fgsms:services:interfaces:status", "statusServicePort"), StatusService.class);
}
origin: org.mil-oss/fgsms-common-interfaces

/**
 * Remote Agent Callback Port
 * 
 * @param features
 *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
 * @return
 *     returns RemoteAgentCallbackPort
 */
@WebEndpoint(name = "RemoteAgentCallbackServicePort")
public RemoteAgentCallbackPort getRemoteAgentCallbackServicePort(WebServiceFeature... features) {
  return super.getPort(new QName("urn:org:miloss:fgsms:services:interfaces:agentCallbackService", "RemoteAgentCallbackServicePort"), RemoteAgentCallbackPort.class, features);
}
origin: org.mil-oss/fgsms-common-interfaces

/**
 * Remote Agent Callback Port
 * 
 * @return
 *     returns RemoteAgentCallbackPort
 */
@WebEndpoint(name = "RemoteAgentCallbackServicePort")
public RemoteAgentCallbackPort getRemoteAgentCallbackServicePort() {
  return super.getPort(new QName("urn:org:miloss:fgsms:services:interfaces:agentCallbackService", "RemoteAgentCallbackServicePort"), RemoteAgentCallbackPort.class);
}
origin: org.mil-oss/fgsms-common-interfaces

/**
 * 
 * @return
 *     returns OpStatusService
 */
@WebEndpoint(name = "opStatusServiceBinding")
public OpStatusService getOpStatusServiceBinding() {
  return super.getPort(new QName("urn:org:miloss:fgsms:services:interfaces:policyConfiguration", "opStatusServiceBinding"), OpStatusService.class);
}
origin: org.apache.juddi/juddi-client

/**
 * 
 * @return
 *     returns UDDISecurityPortType
 */
@WebEndpoint(name = "UDDI_Security_Port")
public UDDISecurityPortType getUDDISecurityPort() {
  return super.getPort(new QName("urn:uddi-org:v3_service", "UDDI_Security_Port"), UDDISecurityPortType.class);
}
origin: org.apache.juddi/juddi-client

/**
 * 
 * @return
 *     returns UDDISubscriptionListenerPortType
 */
@WebEndpoint(name = "UDDI_SubscriptionListener_Port")
public UDDISubscriptionListenerPortType getUDDISubscriptionListenerPort() {
  return super.getPort(new QName("urn:uddi-org:v3_service", "UDDI_SubscriptionListener_Port"), UDDISubscriptionListenerPortType.class);
}
origin: org.apache.juddi/juddi-client

/**
 * 
 * @return
 *     returns UDDIInquiryPortType
 */
@WebEndpoint(name = "UDDI_Inquiry_Port")
public UDDIInquiryPortType getUDDIInquiryPort() {
  return super.getPort(new QName("urn:uddi-org:v3_service", "UDDI_Inquiry_Port"), UDDIInquiryPortType.class);
}
origin: org.apache.juddi/juddi-client

/**
 * 
 * @return
 *     returns UDDIPublicationPortType
 */
@WebEndpoint(name = "UDDI_Publication_Port")
public UDDIPublicationPortType getUDDIPublicationPort() {
  return super.getPort(new QName("urn:uddi-org:v3_service", "UDDI_Publication_Port"), UDDIPublicationPortType.class);
}
origin: org.kie.remote/kie-remote-client

/**
 * 
 * @param features
 *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
 * @return
 *     returns CommandWebService
 */
@WebEndpoint(name = "CommandServiceBasicAuthPort")
public CommandWebService getCommandServiceBasicAuthPort(WebServiceFeature... features) {
  return super.getPort(new QName("http://services.remote.kie.org/6.5.0.1/command", "CommandServiceBasicAuthPort"), CommandWebService.class, features);
}
origin: org.dcm4che/dcm4chee-xds2-infoset

/**
 * 
 * @return
 *     returns XCAIRespondingGatewayPortType
 */
@WebEndpoint(name = "XCAIRespondingGateway_Port_Soap12")
public XCAIRespondingGatewayPortType getXCAIRespondingGatewayPortSoap12() {
  return super.getPort(new QName("urn:ihe:rad:xdsi-b:2009", "XCAIRespondingGateway_Port_Soap12"), XCAIRespondingGatewayPortType.class);
}
origin: org.dcm4che/dcm4chee-xds2-infoset

/**
 * 
 * @return
 *     returns DocumentRegistryPortType
 */
@WebEndpoint(name = "DocumentRegistry_Port_Soap12")
public DocumentRegistryPortType getDocumentRegistryPortSoap12() {
  return super.getPort(new QName("urn:ihe:iti:xds-b:2007", "DocumentRegistry_Port_Soap12"), DocumentRegistryPortType.class);
}
origin: org.jboss.jsr299.tck/jsr299-tck-impl

  @WebEndpoint(name = "SheepWSPort")
  public SheepWS getSheepWSPort(WebServiceFeature... features) {
    return super.getPort(new QName("http://ws.contextual.non.injection.lookup.tests.tck.jsr299.jboss.org/", "SheepWSPort"), SheepWS.class, features);
  }
}
origin: org.bedework/bw-xml-calws-soap

/**
 * 
 * @return
 *     returns CalWsServicePortType
 */
@WebEndpoint(name = "CalWsPort")
public CalWsServicePortType getCalWsPort() {
  return super.getPort(new QName("http://docs.oasis-open.org/ws-calendar/ns/soap", "CalWsPort"), CalWsServicePortType.class);
}
origin: org.jboss.jbossts.xts/jbossxts

/**
 * 
 * @param features
 *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the <code>features</code> parameter will have their default values.
 * @return
 *     returns TerminationParticipantPortType
 */
@WebEndpoint(name = "TerminationParticipantPortType")
public TerminationParticipantPortType getTerminationParticipantPortType(WebServiceFeature... features) {
  return super.getPort(new QName("http://schemas.arjuna.com/ws/2005/10/wsarjtx", "TerminationParticipantPortType"), TerminationParticipantPortType.class, features);
}
origin: org.jboss.jbossts.xts/jbossxts

/**
 * 
 * @return
 *     returns TerminationCoordinatorPortType
 */
@WebEndpoint(name = "TerminationCoordinatorPortType")
public TerminationCoordinatorPortType getTerminationCoordinatorPortType() {
  return super.getPort(new QName("http://schemas.arjuna.com/ws/2005/10/wsarjtx", "TerminationCoordinatorPortType"), TerminationCoordinatorPortType.class);
}
javax.xml.wsWebEndpoint<init>

Popular methods of WebEndpoint

  • name

Popular in Java

  • Making http post requests using okhttp
  • addToBackStack (FragmentTransaction)
  • onCreateOptionsMenu (Activity)
  • requestLocationUpdates (LocationManager)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Hashtable (java.util)
    Hashtable is a synchronized implementation of Map. All optional operations are supported.Neither key
  • JLabel (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now