1 package org.jboss.test.webservice.jbws775; 2 3 import java.rmi.Remote ; 4 import java.rmi.RemoteException ; 5 6 public class TextTranslatorImpl implements TextTranslator, Remote  7 { 8 public String translate(String text, String sourceLanguage, String targetLanguage) throws TDictionaryNotAvailable, TTextNotTranslatable, RemoteException  9 { 10 11 String _retVal = null; 12 return _retVal; 13 } 14 15 public void quoteTranslation(String clientName, String text, String sourceLanguage, String targetLanguage) throws RemoteException  16 { 17 } 18 19 public TQuoteStatus getQuotationStatus(String clientName) throws RemoteException  20 { 21 22 TQuoteStatus _retVal = null; 23 return _retVal; 24 } 25 } 26 | Popular Tags |