Statistics
| Branch: | Revision:

root / src / com / rackspace / cloud / servers / api / client / Entity.java @ 35e7942d

History | View | Annotate | Download (497 Bytes)

1
/**
2
 * 
3
 */
4
package com.rackspace.cloud.servers.api.client;
5

    
6
/**
7
 * @author mike
8
 *
9
 */
10
public class Entity {
11
        
12
        private String id;
13
        private String name;
14

    
15
        /**
16
         * @return the id
17
         */
18
        public String getId() {
19
                return id;
20
        }
21

    
22
        /**
23
         * @param id the id to set
24
         */
25
        public void setId(String id) {
26
                this.id = id;
27
        }
28

    
29
        /**
30
         * @return the name
31
         */
32
        public String getName() {
33
                return name;
34
        }
35

    
36
        /**
37
         * @param name the name to set
38
         */
39
        public void setName(String name) {
40
                this.name = name;
41
        }
42

    
43
}