Creating a Java class - Cloud - 8.0

Apache CXF (Mediation)

Version
Cloud
8.0
Language
English
Product
Talend Data Fabric
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
Data Governance > Third-party systems > Apache CXF components (Mediation)
Data Quality and Preparation > Third-party systems > Apache CXF components (Mediation)
Design and Development > Third-party systems > Apache CXF components (Mediation)
Last publication date
2024-02-21

Procedure

  1. From the repository tree view, expand the Code node and right click the Beans node. In the contextual menu, select Create Bean.
  2. The New Bean wizard opens. In the Name field, type in a name for the bean, for example, CXFdemobean. Click Finish to close the wizard.
  3. Change the class type to interface, change the return type to string and remove the message body.
    package beans;
    
    public interface CXFdemobean {
        public String helloExample(String message) ;
    }
  4. Press Ctrl+S to save your bean.