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

com.upplication.cordova.AllowNavigation Maven / Gradle / Ivy

There is a newer version: 9.0.0
Show newest version
package com.upplication.cordova;

/**
 * allow navigation element
 * https://cordova.apache.org/docs/en/latest/config_ref/index.html#allow-navigation
 */
public class AllowNavigation {

    private String href;

    public static AllowNavigation create(){
        return new AllowNavigation();
    }

    public AllowNavigation href(String href) {
        this.href = href;
        return this;
    }

    public String getHref() {
        return href;
    }

    public void setHref(String href) {
        this.href = href;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy