Moved the classes to create procedural web-services into a procedural package.

This commit is contained in:
Inderjeet Singh 2010-11-02 17:48:51 +00:00
parent 681281e772
commit 4a852043b3
7 changed files with 10 additions and 10 deletions

View File

@ -31,8 +31,8 @@ import com.google.gson.webservice.definition.procedural.ResponseSpec;
import com.google.gson.webservice.definition.procedural.WebServiceCallSpec;
import com.google.gson.webservice.definition.procedural.WebServiceRequest;
import com.google.gson.webservice.definition.procedural.WebServiceResponse;
import com.google.gson.wsf.server.RequestReceiver;
import com.google.gson.wsf.server.ResponseSender;
import com.google.gson.wsf.server.procedural.RequestReceiver;
import com.google.gson.wsf.server.procedural.ResponseSender;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gson.wsf.inject.server;
package com.google.gson.wsf.inject.server.procedural;
import javax.servlet.http.HttpServletRequest;
@ -22,8 +22,8 @@ import com.google.gson.webservice.definition.procedural.WebServiceCall;
import com.google.gson.webservice.definition.procedural.WebServiceCallSpec;
import com.google.gson.webservice.definition.procedural.WebServiceRequest;
import com.google.gson.webservice.definition.procedural.WebServiceResponse;
import com.google.gson.wsf.server.RequestReceiver;
import com.google.gson.wsf.server.WebServiceCallServerBuilder;
import com.google.gson.wsf.server.procedural.RequestReceiver;
import com.google.gson.wsf.server.procedural.WebServiceCallServerBuilder;
import com.google.inject.Inject;
import com.google.inject.Provider;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gson.wsf.inject;
package com.google.gson.wsf.inject.server.procedural;
import com.google.gson.webservice.definition.CallPath;
import com.google.gson.webservice.definition.procedural.WebServiceCallSpec;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gson.wsf.server;
package com.google.gson.wsf.server.procedural;
import java.io.BufferedReader;
import java.io.IOException;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gson.wsf.server;
package com.google.gson.wsf.server.procedural;
import com.google.gson.webservice.definition.procedural.WebServiceCallSpec;
import com.google.gson.webservice.definition.procedural.WebServiceRequest;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gson.wsf.server;
package com.google.gson.wsf.server.procedural;
import java.io.IOException;
import java.lang.reflect.Type;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gson.wsf.server;
package com.google.gson.wsf.server.procedural;
import com.google.gson.webservice.definition.procedural.WebServiceCallSpec;
import com.google.gson.webservice.definition.procedural.WebServiceRequest;