Back to project page xing-android-sdk.
The source code is released under:
Apache License
If you think the Android project xing-android-sdk 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 de.hdodenhof.xingapi.models; //from ww w . j a va2 s . c o m import java.util.Date; import de.hdodenhof.xingapi.enums.ActivityObjectType; public class Event extends ActivityObject { private String name; private String permalink; private Date createdAt; public Date getCreatedAt() { return createdAt; } public String getName() { return name; } public String getPermalink() { return permalink; } @Override public ActivityObjectType getType() { return ActivityObjectType.EVENT; } }