All Downloads are FREE. Search and download functionalities are using the official Maven repository.

website.automate.jwebrobot.mapper.action.OpenActionMapper Maven / Gradle / Ivy

package website.automate.jwebrobot.mapper.action;

import website.automate.waml.io.model.action.OpenAction;

public class OpenActionMapper extends ConditionalActionMapper {

    @Override
    public OpenAction map(OpenAction source) {
        OpenAction target = new OpenAction();
        map(source, target);
        return target;
    }

    @Override
    public void map(OpenAction source, OpenAction target) {
        super.map(source, target);
        target.setUrl(source.getUrl());
    }

    @Override
    public Class getSupportedType() {
        return OpenAction.class;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy