Package org.jacorb.test.bugs.bug968

Source Code of org.jacorb.test.bugs.bug968.ReproServiceImpl

package org.jacorb.test.bugs.bug968;

import cxf.repro.ReproData;
import cxf.repro.ReproDatas;
import cxf.repro.ReproService;

public class ReproServiceImpl implements ReproService
{
    public int works( ReproData data )
    {
        return data.getALong();
    }

    public ReproDatas failsEmpty( ReproData data )
    {
        ReproDatas out = new ReproDatas();
        out.getItem().add( data );
        return out;
    }

    public ReproData failsCrash( ReproData data )
    {
        return data;
    }
}
TOP

Related Classes of org.jacorb.test.bugs.bug968.ReproServiceImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.