blob: 0bb9dc69e0e61d4e04fb98c61828e273b7605db8 [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.
*/
package org.apache.qpid.protonj2.test.driver.actions;
import org.apache.qpid.protonj2.test.driver.AMQPTestDriver;
import org.apache.qpid.protonj2.test.driver.ScriptedAction;
import org.apache.qpid.protonj2.test.driver.codec.primitives.DescribedType;
/**
* Abstract base used by inject actions of SASL Performatives
*
* @param <P> the SASL performative being sent.
*/
public abstract class AbstractSaslPerformativeInjectAction<P extends DescribedType> implements ScriptedAction {
public static final int CHANNEL_UNSET = -1;
private final AMQPTestDriver driver;
private int channel = CHANNEL_UNSET;
public AbstractSaslPerformativeInjectAction(AMQPTestDriver driver) {
this.driver = driver;
}
@Override
public AbstractSaslPerformativeInjectAction<P> now() {
perform(driver);
return this;
}
@Override
public AbstractSaslPerformativeInjectAction<P> later(int delay) {
driver.afterDelay(delay, this);
return this;
}
@Override
public AbstractSaslPerformativeInjectAction<P> queue() {
driver.addScriptedElement(this);
return this;
}
@Override
public AbstractSaslPerformativeInjectAction<P> perform(AMQPTestDriver driver) {
driver.sendSaslFrame(onChannel(), getPerformative());
return this;
}
public int onChannel() {
return this.channel;
}
public AbstractSaslPerformativeInjectAction<?> onChannel(int channel) {
this.channel = channel;
return this;
}
public abstract P getPerformative();
}