blob: 31604249035f72ccc7db058a93e0669c363caa05 [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
apex.operator.inputOperator.classname=com.datatorrent.stram.engine.TestGeneratorInputOperator
apex.operator.inputOperator.myConfigProperty=myConfigPropertyValue
apex.operator.operator1.classname=com.datatorrent.stram.engine.GenericTestOperator
apex.operator.operator1.myStringProperty=myStringPropertyValue
apex.operator.operator2.classname=com.datatorrent.stram.engine.GenericTestOperator
#define a template for operator definition
apex.template.nt1.classname=com.datatorrent.stram.engine.GenericTestOperator
apex.template.nt1.myStringProperty=myStringPropertyValueFromTemplate
apex.operator.operator3.template=nt1
apex.operator.operator4.template=nt1
apex.operator.operator4.myStringProperty=overrideOperator4
apex.operator.operator4.stringPropertySetterOnly=setterOnlyOperator4
apex.operator.operator4.booleanProperty=true
apex.stream.n1n2.source=operator1.outport1
apex.stream.n1n2.sinks=operator2.inport1
apex.stream.n1n2.template=defaultstream
apex.stream.n1n2.locality=CONTAINER_LOCAL
apex.stream.inputStream.source=inputOperator.outport
apex.stream.inputStream.sinks=operator1.inport1,operator3.inport1,operator4.inport1