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

de.swm.gwt.linker.server.propertyprovider.PhoneGapPropertyProvider Maven / Gradle / Ivy

There is a newer version: 3.1
Show newest version
package de.swm.gwt.linker.server.propertyprovider;

import javax.servlet.http.HttpServletRequest;

/**
 * 
 * @author Daniel Kurka (see http://code.google.com/p/mgwt/)
 *
 */
public class PhoneGapPropertyProvider implements PropertyProvider {

        private static final long serialVersionUID = -411058962729141969L;

        @Override
        public String getPropertyName() {
                return "phonegap.env";
        }

        @Override
        public String getPropertyValue(HttpServletRequest req) throws PropertyProviderException {
                return "no";
        }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy