Port Schema
Functionality
This component demonstrates how to set schema specified in the Custom Property Sheet on the output port.
Default Behavior
The schema is provided in the CPS, which is set on the output port when finished. By default, there is no business logic or send logic implemented in the component's code. So it does not send out any message to the output port.
Changes required to use a different CPS
PortSchemaPM.java: This is the class which has the logic to set the schema on the output port. CPSHelper object is used to set schema on the ports.
Two constructors are added in PortSchemaPM class as shown below:CODEpublic PortSchemaPM(CPSHelper cps) { this(); cpsHelper = cps; } public PortSchemaPM() { }
- Setting the schema on the port is handled in setPortSchema(...) method.
- A JMX attribute with name "PropertyEditor" is added on getRecordDefinition(..) method. That class is responsibleinshowing the UI to provide the schema.
The UI for the component is handled in the package com.fiorano.edbc.portschema.editors and the schema is stored using the class
CODEcom.fiorano.edbc.portschema.model.Schema
The service-export ant task in the component's common.xml file should be changed as follows.
CODE<?xml version="1.0" encoding="UTF-8"?> <service-export destfile="export.zip" servicefile="etc/ServiceDescriptor.xml" resourcesfile="etc/resources.properties" executionClass="com.fiorano.edbc.portschema.PortSchema" inMemoryClass="com.fiorano.edbc.portschema.PortSchema" cpsClass="com.fiorano.edbc.portschema.model.PortSchemaPM" cpsMandatory="true" defaultLogModule="com.fiorano.edbc.portschema.portSchema"> <fileset dir="${deploy.dir}"> <include name="${jar.path}" /> </fileset> </service-export>
The following changes are made in Service refs in the component's ServiceDescriptor.xml file.
Add
CODE<serviceref guid="BCCommon" version="4.0" /> <serviceref guid="TifosiUIFramework" version="4.0" /> <serviceref guid="dom" version="4.0"/> <serviceref guid="customEditors" version="4.0"/> <serviceref guid="xerces" version="4.0"/>
Remove
CODE<serviceref guid="FioranoJavaRTL" version="4.0" />
- To check the functionality of this component, it should be registered with the server.
- The steps to register the samples is specified in the Sample Templates section.