blob: abb704088af56208425326b3403f88114c6c20ab [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# test for defining topology as property file
dt.operator.inputOperator.classname=com.datatorrent.stram.engine.TestGeneratorInputOperator
dt.operator.inputOperator.myConfigProperty=myConfigPropertyValue
dt.operator.operator1.classname=com.datatorrent.stram.engine.GenericTestOperator
dt.operator.operator1.myStringProperty=myStringPropertyValue
dt.operator.operator2.classname=com.datatorrent.stram.engine.GenericTestOperator
#define a template for operator definition
dt.template.nt1.classname=com.datatorrent.stram.engine.GenericTestOperator
dt.template.nt1.myStringProperty=myStringPropertyValueFromTemplate
dt.operator.operator3.template=nt1
dt.operator.operator4.template=nt1
dt.operator.operator4.myStringProperty=overrideOperator4
dt.operator.operator4.stringPropertySetterOnly=setterOnlyOperator4
dt.operator.operator4.booleanProperty=true
dt.stream.n1n2.source=operator1.outport1
dt.stream.n1n2.sinks=operator2.inport1
dt.stream.n1n2.template=defaultstream
dt.stream.n1n2.locality=CONTAINER_LOCAL
dt.stream.inputStream.source=inputOperator.outport
dt.stream.inputStream.sinks=operator1.inport1,operator3.inport1,operator4.inport1