Back to project page android-rackspacecloud.
The source code is released under:
MIT License
If you think the Android project android-rackspacecloud listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /*from w w w .java2 s . com*/ */ package com.rackspace.cloud.servers.api.client; import java.io.Serializable; /** * @author Mike Mayo - mike.mayo@rackspace.com - twitter.com/greenisus * */ public class Entity implements Serializable { private static final long serialVersionUID = 6865922063268248789L; private String id; private String name; /** * @return the id */ public String getId() { return id; } /** * @param id the id to set */ public void setId(String id) { this.id = id; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } }