Back to project page cloudmine-android.
The source code is released under:
Copyright (c) 2012 CloudMine LLC, http://cloudmine.me Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software")...
If you think the Android project cloudmine-android 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.cloudmine.api.db; // ww w.j a va2 s . c o m import com.cloudmine.api.CMApiCredentials; import com.cloudmine.api.rest.CMURLBuilder; /** * */ public abstract class RequestConstants { static final String APP_SAVE_URL; static final String USER_SAVE_URL; static final CMURLBuilder APP_SAVE_FILE_URL; static final CMURLBuilder USER_SAVE_FILE_URL; static { CMURLBuilder builder = new CMURLBuilder(CMApiCredentials.getApplicationIdentifier()); APP_SAVE_URL = builder.copy().text().asUrlString(); USER_SAVE_URL = builder.user().text().asUrlString(); APP_SAVE_FILE_URL = new CMURLBuilder(CMApiCredentials.getApplicationIdentifier()); USER_SAVE_FILE_URL = new CMURLBuilder(CMApiCredentials.getApplicationApiKey()).user(); } }