summaryrefslogtreecommitdiffstats
path: root/nova-client/src/main/java/com/woorea/openstack/nova/api/extensions/KeyPairsExtension.java
blob: 5e2c55586ebe5fe2f5c653bf719895e290e1d0e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.woorea.openstack.nova.api.extensions;


import com.woorea.openstack.base.client.Entity;
import com.woorea.openstack.base.client.HttpMethod;
import com.woorea.openstack.base.client.OpenStackClient;
import com.woorea.openstack.base.client.OpenStackRequest;
import com.woorea.openstack.nova.model.KeyPair;
import com.woorea.openstack.nova.model.KeyPairs;

public class KeyPairsExtension {
	
	private final OpenStackClient CLIENT;
	
	public KeyPairsExtension(OpenStackClient client) {
		CLIENT = client;
	}
	
	public List list() {
		return new List();
	}

	public Create create(String name, String publicKey) {
		KeyPair keyPairForCreate = new KeyPair(name, publicKey);
		return new Create(keyPairForCreate);
	}

	public Create create(String name) {
		return create(name, null);
	}

	public Delete delete(String name) {
		return new Delete(name);
	}

	public class Create extends OpenStackRequest<KeyPair> {

		private KeyPair keyPairForCreate;

		public Create(KeyPair keyPairForCreate) {
			super(CLIENT, HttpMethod.POST, "/os-keypairs", Entity.json(keyPairForCreate), KeyPair.class);
			this.keyPairForCreate = keyPairForCreate;
		}

	}

	public class Delete extends OpenStackRequest<Void> {

		private String name;

		public Delete(String name) {
			super(CLIENT, HttpMethod.DELETE, new StringBuilder("/os-keypairs/").append(name).toString(), null, Void.class);
		}

	}

	public class List extends OpenStackRequest<KeyPairs> {

		public List() {
			super(CLIENT, HttpMethod.GET, "/os-keypairs", null, KeyPairs.class);
		}

	}
	
}