Java Doc for EndpointImpl.java in  » Web-Services-apache-cxf-2.0.1 » frontend » org » apache » cxf » jaxws » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Services apache cxf 2.0.1 » frontend » org.apache.cxf.jaxws 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.xml.ws.Endpoint
      org.apache.cxf.jaxws.EndpointImpl

EndpointImpl
public class EndpointImpl extends javax.xml.ws.Endpoint implements InterceptorProvider,Configurable(Code)


Field Summary
final public static  StringCHECK_PUBLISH_ENDPOINT_PERMISSON_PROPERTY
     This property controls whether the 'publishEndpoint' permission is checked using only the AccessController (i.e.

Constructor Summary
public  EndpointImpl(Object implementor)
    
public  EndpointImpl(Bus b, Object implementor, JaxWsServerFactoryBean sf)
    
public  EndpointImpl(Bus b, Object i, String bindingUri, String wsdl)
    
Parameters:
  b -
Parameters:
  i - The implementor object.
Parameters:
  bindingUri - The URI of the Binding being used.
public  EndpointImpl(Bus b, Object i, String bindingUri)
    
public  EndpointImpl(Bus bus, Object implementor)
    

Method Summary
protected  voidcheckProperties()
    
protected  voidcheckPublishPermission()
    
protected  voiddoPublish(String addr)
    
public  StringgetAddress()
    
public  StringgetBeanName()
    
public  BindinggetBinding()
    
public  BindingConfigurationgetBindingConfig()
    
public  StringgetBindingUri()
    
 org.apache.cxf.endpoint.EndpointgetEndpoint()
    
public  QNamegetEndpointName()
    
public  ExecutorgetExecutor()
    
public  List<AbstractFeature>getFeatures()
    
public  ObjectgetImplementor()
    
public  ClassgetImplementorClass()
     Gets the class of the implementor.
public  List<Interceptor>getInFaultInterceptors()
    
public  List<Interceptor>getInInterceptors()
    
public  InvokergetInvoker()
    
public  List<Source>getMetadata()
    
public  List<Interceptor>getOutFaultInterceptors()
    
public  List<Interceptor>getOutInterceptors()
    
public  Map<String, Object>getProperties()
    
public  ServerImplgetServer()
    
public synchronized  ServerImplgetServer(String addr)
    
public  ServicegetService()
    
public  JaxWsServiceFactoryBeangetServiceFactory()
    
public  QNamegetServiceName()
    
public  StringgetWsdlLocation()
    
public  booleanisPublished()
    
public  voidpublish(Object arg0)
    
public  voidpublish(String addr)
    
public  voidpublish()
    
public  voidsetAddress(String address)
    
public  voidsetBindingConfig(BindingConfiguration config)
    
public  voidsetBindingUri(String binding)
    
public  voidsetEndpointName(QName endpointName)
    
public  voidsetExecutor(Executor executor)
    
public  voidsetFeatures(List<AbstractFeature> features)
    
public  voidsetImplementorClass(Class implementorClass)
    
public  voidsetInFaultInterceptors(List<Interceptor> interceptors)
    
public  voidsetInInterceptors(List<Interceptor> interceptors)
    
public  voidsetInvoker(Invoker invoker)
    
public  voidsetMetadata(List<Source> metadata)
    
public  voidsetOutFaultInterceptors(List<Interceptor> interceptors)
    
public  voidsetOutInterceptors(List<Interceptor> interceptors)
    
public  voidsetProperties(Map<String, Object> properties)
    
public  voidsetServiceFactory(JaxWsServiceFactoryBean sf)
    
public  voidsetServiceName(QName serviceName)
    
public  voidsetWsdlLocation(String wsdlLocation)
    
public  voidstop()
    

Field Detail
CHECK_PUBLISH_ENDPOINT_PERMISSON_PROPERTY
final public static String CHECK_PUBLISH_ENDPOINT_PERMISSON_PROPERTY(Code)
This property controls whether the 'publishEndpoint' permission is checked using only the AccessController (i.e. when SecurityManager is not installed). By default this check is not done as the system property is not set.




Constructor Detail
EndpointImpl
public EndpointImpl(Object implementor)(Code)



EndpointImpl
public EndpointImpl(Bus b, Object implementor, JaxWsServerFactoryBean sf)(Code)



EndpointImpl
public EndpointImpl(Bus b, Object i, String bindingUri, String wsdl)(Code)

Parameters:
  b -
Parameters:
  i - The implementor object.
Parameters:
  bindingUri - The URI of the Binding being used. Optional.
Parameters:
  wsdl - The URL of the WSDL for the service, if different than the URL specified on theWebService annotation. Optional.



EndpointImpl
public EndpointImpl(Bus b, Object i, String bindingUri)(Code)



EndpointImpl
public EndpointImpl(Bus bus, Object implementor)(Code)




Method Detail
checkProperties
protected void checkProperties()(Code)



checkPublishPermission
protected void checkPublishPermission()(Code)



doPublish
protected void doPublish(String addr)(Code)



getAddress
public String getAddress()(Code)



getBeanName
public String getBeanName()(Code)



getBinding
public Binding getBinding()(Code)



getBindingConfig
public BindingConfiguration getBindingConfig()(Code)



getBindingUri
public String getBindingUri()(Code)



getEndpoint
org.apache.cxf.endpoint.Endpoint getEndpoint()(Code)



getEndpointName
public QName getEndpointName()(Code)



getExecutor
public Executor getExecutor()(Code)



getFeatures
public List<AbstractFeature> getFeatures()(Code)



getImplementor
public Object getImplementor()(Code)



getImplementorClass
public Class getImplementorClass()(Code)
Gets the class of the implementor. the class of the implementor object



getInFaultInterceptors
public List<Interceptor> getInFaultInterceptors()(Code)



getInInterceptors
public List<Interceptor> getInInterceptors()(Code)



getInvoker
public Invoker getInvoker()(Code)



getMetadata
public List<Source> getMetadata()(Code)



getOutFaultInterceptors
public List<Interceptor> getOutFaultInterceptors()(Code)



getOutInterceptors
public List<Interceptor> getOutInterceptors()(Code)



getProperties
public Map<String, Object> getProperties()(Code)



getServer
public ServerImpl getServer()(Code)



getServer
public synchronized ServerImpl getServer(String addr)(Code)



getService
public Service getService()(Code)



getServiceFactory
public JaxWsServiceFactoryBean getServiceFactory()(Code)



getServiceName
public QName getServiceName()(Code)



getWsdlLocation
public String getWsdlLocation()(Code)



isPublished
public boolean isPublished()(Code)



publish
public void publish(Object arg0)(Code)



publish
public void publish(String addr)(Code)



publish
public void publish()(Code)



setAddress
public void setAddress(String address)(Code)



setBindingConfig
public void setBindingConfig(BindingConfiguration config)(Code)



setBindingUri
public void setBindingUri(String binding)(Code)



setEndpointName
public void setEndpointName(QName endpointName)(Code)



setExecutor
public void setExecutor(Executor executor)(Code)



setFeatures
public void setFeatures(List<AbstractFeature> features)(Code)



setImplementorClass
public void setImplementorClass(Class implementorClass)(Code)



setInFaultInterceptors
public void setInFaultInterceptors(List<Interceptor> interceptors)(Code)



setInInterceptors
public void setInInterceptors(List<Interceptor> interceptors)(Code)



setInvoker
public void setInvoker(Invoker invoker)(Code)



setMetadata
public void setMetadata(List<Source> metadata)(Code)



setOutFaultInterceptors
public void setOutFaultInterceptors(List<Interceptor> interceptors)(Code)



setOutInterceptors
public void setOutInterceptors(List<Interceptor> interceptors)(Code)



setProperties
public void setProperties(Map<String, Object> properties)(Code)



setServiceFactory
public void setServiceFactory(JaxWsServiceFactoryBean sf)(Code)



setServiceName
public void setServiceName(QName serviceName)(Code)



setWsdlLocation
public void setWsdlLocation(String wsdlLocation)(Code)



stop
public void stop()(Code)



Fields inherited from javax.xml.ws.Endpoint
final public static String WSDL_PORT(Code)(Java Doc)
final public static String WSDL_SERVICE(Code)(Java Doc)

Methods inherited from javax.xml.ws.Endpoint
public static Endpoint create(Object implementor)(Code)(Java Doc)
public static Endpoint create(String bindingId, Object implementor)(Code)(Java Doc)
abstract public Binding getBinding()(Code)(Java Doc)
abstract public java.util.concurrent.Executor getExecutor()(Code)(Java Doc)
abstract public Object getImplementor()(Code)(Java Doc)
abstract public List<javax.xml.transform.Source> getMetadata()(Code)(Java Doc)
abstract public Map<String, Object> getProperties()(Code)(Java Doc)
abstract public boolean isPublished()(Code)(Java Doc)
abstract public void publish(String address)(Code)(Java Doc)
public static Endpoint publish(String address, Object implementor)(Code)(Java Doc)
abstract public void publish(Object serverContext)(Code)(Java Doc)
abstract public void setExecutor(java.util.concurrent.Executor executor)(Code)(Java Doc)
abstract public void setMetadata(List<javax.xml.transform.Source> metadata)(Code)(Java Doc)
abstract public void setProperties(Map<String, Object> properties)(Code)(Java Doc)
abstract public void stop()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.