blob: b9314d0f81b2ab48befcc63f330d7390f298fc59 [file] [log] [blame]
package org.apache.helix.mock.participant;
/*
* 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.
*/
import org.apache.helix.participant.statemachine.StateModelFactory;
// mock master slave state model factory
public class MockMSModelFactory extends StateModelFactory<MockMSStateModel> {
private MockTransition _transition;
public MockMSModelFactory() {
this(null);
}
public MockMSModelFactory(MockTransition transition) {
_transition = transition;
}
public void setTrasition(MockTransition transition) {
_transition = transition;
// set existing transition
for (String resource : getResourceSet()) {
for (String partition : getPartitionSet(resource)) {
MockMSStateModel stateModel = getStateModel(resource, partition);
stateModel.setTransition(transition);
}
}
}
@Override
public MockMSStateModel createNewStateModel(String resourceName, String partitionKey) {
MockMSStateModel model = new MockMSStateModel(_transition);
return model;
}
}