1 /* 2 * $Id: CreditAgencyService.java 19496 2010-09-09 16:16:02Z aperepel $ 3 * -------------------------------------------------------------------------------------- 4 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 5 * 6 * The software in this package is published under the terms of the CPAL v1.0 7 * license, a copy of which has been included with this distribution in the 8 * LICENSE.txt file. 9 */ 10 11 package org.mule.example.loanbroker.creditagency; 12 13 import org.mule.example.loanbroker.model.CreditProfile; 14 import org.mule.example.loanbroker.model.Customer; 15 16 import javax.jws.WebService; 17 18 19 /** 20 * <code>CreditAgencyService</code> the service that provides a credit score for a 21 * customer. 22 */ 23 @WebService 24 public interface CreditAgencyService 25 { 26 CreditProfile getCreditProfile(Customer customer); 27 }