All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ioc.commons.impl.android.integration.service.AndroidBaseService Maven / Gradle / Ivy

package org.ioc.commons.impl.android.integration.service;

import java.util.Map;

import org.ioc.commons.integration.service.Service;
import org.ioc.commons.integration.service.ServiceObjectManager;

public class AndroidBaseService implements Service {

	protected final Map queueRequests;
	
	public AndroidBaseService(Map queueRequests) {
		this.queueRequests = queueRequests;
	}
	
	/*
	 * (non-Javadoc)
	 * @see org.ioc.commons.integration.service.Service#getUrlService()
	 */
	@Override
	public String getUrlService() {
		// TODO Auto-generated method stub
		return null;
	}

	/*
	 * (non-Javadoc)
	 * @see org.ioc.commons.integration.service.Service#newObjectManager()
	 */
	@Override
	public ServiceObjectManager newObjectManager() {
		return new AndroidServiceObjectManager(this);
	}

	/*
	 * (non-Javadoc)
	 * @see org.ioc.commons.integration.service.Service#getObjectManagerFor(java.lang.Object)
	 */
	@Override
	public ServiceObjectManager getObjectManagerFor(Object thisObject) {
		return new AndroidServiceObjectManager(this);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy