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

com.googlecode.wicket.kendo.ui.resource.KendoAllResourceReference Maven / Gradle / Ivy

package com.googlecode.wicket.kendo.ui.resource;

import org.apache.wicket.request.resource.ResourceReference;

import com.googlecode.wicket.jquery.core.resource.JQueryUrlResourceReference;

/**
 * Provides the {@link ResourceReference} for the kendo-all javascript library (CDN).
* Excerpt: Kendo UI commercial licenses may be obtained at
* http://www.telerik.com/purchase/license-agreement/kendo-ui-complete
* If you do not own a commercial license, this file shall be governed by the trial license terms.
* * @author Sebastien Briquet - sebfz1 * */ public class KendoAllResourceReference extends JQueryUrlResourceReference { private static final long serialVersionUID = 1L; private static final KendoAllResourceReference INSTANCE = new KendoAllResourceReference(); /** * Private constructor */ private KendoAllResourceReference() { super("https://kendo.cdn.telerik.com/2021.1.119/js/kendo.all.min.js"); } /** * Gets the instance of the resource reference * * @return the single instance of the resource reference */ public static JQueryUrlResourceReference get() { return INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy