org.joinedworkz.common.info.Consumption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-base Show documentation
Show all versions of common-base Show documentation
DSL based modeling framework - facilities common base
package org.joinedworkz.common.info;
import org.joinedworkz.core.model.CmnImplementedFeature;
import org.joinedworkz.core.model.CmnProvidedAction;
import org.joinedworkz.core.model.CmnProvidedFeature;
import org.joinedworkz.core.model.CmnResourceOperation;
public class Consumption {
private CmnProvidedAction consumingAction;
private CmnImplementedFeature consumingImplementedFeature;
private CmnProvidedFeature providingFeature;
private String requestLabel;
private CmnResourceOperation resourceOperation;
public CmnProvidedAction getConsumingAction() {
return consumingAction;
}
public void setConsumingAction(CmnProvidedAction consumingAction) {
this.consumingAction = consumingAction;
}
public CmnImplementedFeature getConsumingImplementedFeature() {
return consumingImplementedFeature;
}
public void setConsumingImplementedFeature(CmnImplementedFeature consumingImplementedFeature) {
this.consumingImplementedFeature = consumingImplementedFeature;
}
public CmnProvidedFeature getProvidingFeature() {
return providingFeature;
}
public void setProvidingFeature(CmnProvidedFeature providingFeature) {
this.providingFeature = providingFeature;
}
public String getRequestLabel() {
return requestLabel;
}
public void setRequestLabel(String requestLabel) {
this.requestLabel = requestLabel;
}
public CmnResourceOperation getResourceOperation() {
return resourceOperation;
}
public void setResourceOperation(CmnResourceOperation resourceOperation) {
this.resourceOperation = resourceOperation;
}
}