summaryrefslogtreecommitdiffstats
path: root/swift-client/src/main/java/com/woorea/openstack/swift/api/AccountResource.java
blob: f98fbf92326ca974977118644e10cfe21b57babd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.woorea.openstack.swift.api;

import com.woorea.openstack.base.client.OpenStackClient;
import com.woorea.openstack.base.client.OpenStackRequest;

public class AccountResource {
	
	private final OpenStackClient CLIENT;
	
	public AccountResource(OpenStackClient client) {
		CLIENT = client;
	}

	public class ShowAccount extends OpenStackRequest<Void> {

		public ShowAccount() {
//			return target.request(MediaType.APPLICATION_JSON).head();
		}

	}

}