aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/propagation/PropagationAdapter.java
blob: 3ea5a75f9aa379c04776f33522362db43e102325 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.dse.propagation;

import tools.refinery.store.adapter.ModelAdapter;
import tools.refinery.store.dse.propagation.impl.PropagationBuilderImpl;

public interface PropagationAdapter extends ModelAdapter {
	@Override
	PropagationStoreAdapter getStoreAdapter();

	PropagationResult propagate();

	static PropagationBuilder builder() {
		return new PropagationBuilderImpl();
	}
}