Back to project page sodf.
The source code is released under:
Copyright (c) 2013 Lorenz Lehmann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Sof...
If you think the Android project sodf listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package lal.apps.smartfoodenvironment.model; /*from w w w. j av a 2 s . c om*/ /** * A vocabulary to describe how a microwave can interact with the product * @author Lorenz Lehmann * */ public class MicrowaveVocabulary { public static final String MICROWAVE_PREFIX = "mic"; public static final String MICROWAVE_URL = "http://www.example.com/sodf-mic"; /** Microwave function key */ public static final String MICROWVAE_PREPARE = "mic:prepare"; /** The temperature in watt */ public static final String MICROWAVE_HEAT = "mic:heat"; /** The duration in minutes*/ public static final String MICROWAVE_DURATION = "mic:time"; }