package org.gcube.portlets.widgets.ckandatapublisherwidget.client; /** * simply encode base64 strings */ public class Encoder { public static native String encode(String toEncode) /*-{ return btoa(toEncode); }-*/; public static native String decode(String toDecode) /*-{ return atob(toDecode); }-*/; }