Will the GmailSettingsService class still be available after April 20th, and will the constructor still be as shown below (from https://code.google.com/p/gdata-java-client/source/browse/trunk/java/sample/appsforyourdomain/gmailsettings/GmailSettingsService.java?r=505)
public GmailSettingsService(
String applicationName, String domain, String username, String password)
throws AuthenticationException {
super(applicationName, Constants.PROTOCOL, Constants.APPS_APIS_DOMAIN);
this.domain = domain;
new GenericFeed().declareExtensions(getExtensionProfile());
this.setUserCredentials(username + "@" + domain, password);
}
Is there any way to test my application before the April 20th expiration date for deprecated APIs to make sure it will work?