wso2 - Error when try to build the VFSTransport Listener class -
i try modified vfstransportlistener class in wso2. encountered error :
multiple markers @ line - cannot override final method abstracttransportlistenerex<polltableentry> - overrides org.apache.axis2.transport.base.abstracttransportlistenerex<org.apache.synapse.transport.vfs.polltableentry>.init
this error happen in init method. can me how solve problem?
you trying override following method in abstracttransportlistenerex class
@override public final void init(configurationcontext cfgctx, transportindescription transportin) throws axisfault { super.init(cfgctx, transportin); doinit(); // create endpoint configured @ transport level (if available) e endpoint = createendpoint(); endpoint.init(this, null); if (endpoint.loadconfiguration(transportin)) { globalendpoint = endpoint; } }
this cannot overridden final method.
Comments
Post a Comment