Back to project page dissertation-project.
The source code is released under:
MIT License
If you think the Android project dissertation-project 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 com.fyp.resilience; /* w w w.j ava2s.c o m*/ import java.util.concurrent.TimeUnit; /** * Contains application-specific Constants. */ public final class Constants { public static final long MAXIMUM_BACKOFF = TimeUnit.MINUTES.toMillis(10); public static final String WIDERST_DOWNLOAD_URL = "http://resilience-fyp.appspot.com/serveWhole?datawholekeyparam="; public static final int MAX_SWARM_CLIENT_RETRIES = 3; public static final int CLIENT_DATA_PORT = 6050; public static final int CLIENT_VERIFICATION_PORT = 6060; }