Package org.jboss.resteasy.spring.scanned

Source Code of org.jboss.resteasy.spring.scanned.CustomerService

package org.jboss.resteasy.spring.scanned;

import org.jboss.resteasy.spring.beanprocessor.Customer;
import org.springframework.stereotype.Component;

@Component
public class CustomerService
{
   public Customer convert(String name)
   {
      return new Customer(name);
   }

   public String convert(Customer customer)
   {
      return customer.getName();
   }
}
TOP

Related Classes of org.jboss.resteasy.spring.scanned.CustomerService

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.