
com.automationrockstars.gunter.events.environment.impl.AbstractEnvironmentImpl Maven / Gradle / Ivy
The newest version!
/*
*
*/
package com.automationrockstars.gunter.events.environment.impl;
import com.automationrockstars.gunter.events.environment.Environment;
import com.automationrockstars.gunter.events.impl.AbstractTestEvent;
public abstract class AbstractEnvironmentImpl extends AbstractTestEvent implements Environment {
private static final String NAME = "NAME";
public AbstractEnvironmentImpl(String parentId, String name) {
super(parentId);
setName(name);
}
@Override
public String getName() {
return getAttribute(NAME);
}
public void setName(String name) {
attributes().put(NAME, name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy