public GregorianCalendar getCreatedAt() - returns the
time this network was created.
Parameters
void
Returns
Returns a GregorianCalendar instance representing the time this network was created.
Example
... try { CloudSession session = CloudSession.connect(emailAddress, password, apiKey, parameters); if (session) { CloudNetwork cn = session.getNetwork(); Log.d(TAG, "identifier: " + cn.getIdentifier()); Log.d(TAG, "subscriptionLevel: " + cn.getSubscriptionLevel()); Log.d(TAG, "isPaidNetwork: " + cn.isPaidNetwork()); Log.d(TAG, "isHomeNetwork: " + cn.isHomeNetwork()); Log.d(TAG, "createdAt: " + cn.getCreatedAt().getTime().toString()); } else { Log.d(TAG, "No Session available!"); } } catch (AlfrescoSessionException e) { Log.e(TAG, "Failed to connect: " + e.toString()); }