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

org.wicketstuff.kendo.ui.resource.KendoAllResourceReference Maven / Gradle / Ivy

There is a newer version: 10.3.0
Show newest version
package org.wicketstuff.kendo.ui.resource;

import org.apache.wicket.request.resource.ResourceReference;
import org.wicketstuff.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 String KENDO_CDN_URL = "https://kendo.cdn.telerik.com/2022.2.510/js/kendo.all.min.js"; private static final KendoAllResourceReference INSTANCE = new KendoAllResourceReference(); /** * Private constructor */ private KendoAllResourceReference() { super(KENDO_CDN_URL); } /** * 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