package org.biomoby.shared.data;

import org.biomoby.shared.MobyService;

/**
 * This interface defines a data instance that has already had remote
 * MOBY services associated with it, probably through a call to MOBY central.
 * We implicitly assume that all services attached to the instance will
 * take it as valid input.
 */

public interface MobyDataServiceAssocInstance extends MobyDataInstance {

    public MobyService[] getServices();
    public void setServices(MobyService[] services);

}
