in generators/AddService/index.js [40:56]
writing: function() {
var libPath = "REPLACE_SFLIBSPATH";
var isAddNewService = true;
if (this.props.frameworkType == "Reliable Actor Service") {
this.composeWith('azuresfjava:StatefulActor', {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
} else if (this.props.frameworkType == "Reliable Stateless Service") {
this.composeWith('azuresfjava:ReliableStatelessService', {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
} else if (this.props.frameworkType == "Reliable Stateful Service") {
this.composeWith('azuresfjava:ReliableStatefulService', {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
}
},