/**
 * WidgetPriceSoapBindingImpl.java
 *
 * This file is the SOAP implementation of the WidgetPrice Web Service
 */

package samples.userguide.example6;

import java.util.HashMap;

public class WidgetPriceSoapBindingImpl implements samples.userguide.example6.WidgetPrice {
    HashMap table = new HashMap();
    public void setWidgetPrice(java.lang.String name, java.lang.String price) throws java.rmi.RemoteException {
        table.put(name, price);

    }
    public java.lang.String getWidgetPrice(java.lang.String name) throws java.rmi.RemoteException {
        return (String) table.get(name);
    }
}
