com.afrigis.services.ext.ServiceFactoryAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core Java library to ease use of AfriGIS Services
package com.afrigis.services.ext;
import com.afrigis.services.ServiceCallFactory;
/**
*
* Interface for service implementing classes that which to receive a reference
* to the factory object that instantiated them.
*
*
* @author hendrikc
*
* @see ServiceCallFactory
*/
public interface ServiceFactoryAware {
/**
* Receives the {@link ServiceCallFactory} that created this instance.
*
* @param factory
* a reference to the factory that created this object
*/
void setServiceFactory(ServiceCallFactory factory);
}