+1
On 12/11/05, Sanjiva Weerawarana <[EMAIL PROTECTED]> wrote:
> After yesterday's refactoring I believe we no longer need these. Can we
> kill them?
>
> Sanjiva.
>
> /**
> * Method getInFlow
> *
> * @return Flow
> */
> public Flow getInFlow() {
> return (Flow) this.getComponentProperty(INFLOW_KEY);
> }
>
> /*
> * (non-Javadoc)
> *
> * @see
> org.apache.axis2.description.FlowInclude#setInFlow(org.apache.axis2.description.Flow)
> */
>
> /**
> * Method setInFlow
> *
> * @param inFlow
> */
> public void setInFlow(Flow inFlow) {
> if (inFlow != null) {
> this.setComponentProperty(INFLOW_KEY, inFlow);
> }
> }
>
> /*
> * (non-Javadoc)
> *
> * @see org.apache.axis2.description.FlowInclude#getOutFlow()
> */
>
> /**
> * Method getOutFlow
> *
> * @return Flow
> */
> public Flow getOutFlow() {
> return (Flow) this.getComponentProperty(OUTFLOW_KEY);
> }
>
> /*
> * (non-Javadoc)
> *
> * @see
> org.apache.axis2.description.FlowInclude#setOutFlow(org.apache.axis2.description.Flow)
> */
>
> /**
> * Method setOutFlow
> *
> * @param outFlow
> */
> public void setOutFlow(Flow outFlow) {
> if (outFlow != null) {
> this.setComponentProperty(OUTFLOW_KEY, outFlow);
> }
> }
>
> /*
> * (non-Javadoc)
> *
> * @see org.apache.axis2.description.FlowInclude#getFaultInFlow()
> */
>
> /**
> * Method getFaultInFlow
> *
> * @return Flow
> */
> public Flow getFaultInFlow() {
> return (Flow) this.getComponentProperty(IN_FAULTFLOW_KEY);
> }
>
> /*
> * (non-Javadoc)
> *
> * @see
> org.apache.axis2.description.FlowInclude#setFaultInFlow(org.apache.axis2.description.Flow)
> */
>
> /**
> * Method setFaultInFlow
> *
> * @param faultFlow
> */
> public void setFaultInFlow(Flow faultFlow) {
> if (faultFlow != null) {
> this.setComponentProperty(IN_FAULTFLOW_KEY, faultFlow);
> }
> }
>
> public Flow getFaultOutFlow() {
> return (Flow) this.getComponentProperty(OUT_FAULTFLOW_KEY);
> }
>
> public void setFaultOutFlow(Flow faultFlow) {
> if (faultFlow != null) {
> this.setComponentProperty(OUT_FAULTFLOW_KEY, faultFlow);
> }
> }
>
>
>
--
Davanum Srinivas : http://wso2.com/blogs/