
main.java.com.dragome.services.serverside.ServerSideServiceFactory Maven / Gradle / Ivy
/*
* Copyright (c) 2011-2014 Fernando Petrola
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.dragome.services.serverside;
import java.lang.reflect.Proxy;
import com.dragome.services.interfaces.AsyncServiceExecutor;
import com.dragome.services.interfaces.ServiceFactory;
import com.dragome.web.services.ClientServiceInvocationHandler;
public class ServerSideServiceFactory implements ServiceFactory
{
public T createSyncService(Class extends T> type)
{
return (T) Proxy.newProxyInstance(ServerSideServiceFactory.class.getClassLoader(), new Class[] { type }, new ClientServiceInvocationHandler(type));
}
public T createFixedSyncService(Class extends T> type)
{
return createSyncService(type);
}
public AsyncServiceExecutor createAsyncService(Class extends T> type)
{
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy