Package org.codehaus.xfire.jaxb2

Source Code of org.codehaus.xfire.jaxb2.AccountServiceImpl

/**
*
*/
package org.codehaus.xfire.jaxb2;

import javax.jws.WebParam;
import javax.jws.WebService;

import org.codehaus.xfire.jaxb2.POJOTest.Account;

@WebService(endpointInterface="org.codehaus.xfire.jaxb2.AccountService", serviceName="AccountService")
public class AccountServiceImpl implements AccountService
{
    public Account getAccount()
    {
        return new Account();
    }
   
    public String auth(@WebParam(header=true) String password, String text)
    {
        return text;
    }
}
TOP

Related Classes of org.codehaus.xfire.jaxb2.AccountServiceImpl

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.