Skip to main content
summaryrefslogtreecommitdiffstats
blob: 41f03e9b69a553c631954ad9e795e1d5360f6bec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Created on Mar 8, 2012
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.ats.api.workflow;

import org.eclipse.osee.framework.core.exception.OseeCoreException;

/**
 * @author Donald G. Dunne
 */
public interface HasStateProvider {

   WorkStateProvider getStateData() throws OseeCoreException;
}

Back to the top