summaryrefslogtreecommitdiffstats
path: root/openstack-console/src/main/java/com/woorea/openstack/console/keystone/KeystoneTenantList.java
diff options
context:
space:
mode:
Diffstat (limited to 'openstack-console/src/main/java/com/woorea/openstack/console/keystone/KeystoneTenantList.java')
-rw-r--r--openstack-console/src/main/java/com/woorea/openstack/console/keystone/KeystoneTenantList.java62
1 files changed, 31 insertions, 31 deletions
diff --git a/openstack-console/src/main/java/com/woorea/openstack/console/keystone/KeystoneTenantList.java b/openstack-console/src/main/java/com/woorea/openstack/console/keystone/KeystoneTenantList.java
index 31d0899..ac8994b 100644
--- a/openstack-console/src/main/java/com/woorea/openstack/console/keystone/KeystoneTenantList.java
+++ b/openstack-console/src/main/java/com/woorea/openstack/console/keystone/KeystoneTenantList.java
@@ -26,39 +26,39 @@ import com.woorea.openstack.keystone.model.Tenant;
import com.woorea.openstack.keystone.model.Tenants;
public class KeystoneTenantList extends KeystoneCommand {
-
- public KeystoneTenantList() {
- super("tenant-list");
- }
+
+ public KeystoneTenantList() {
+ super("tenant-list");
+ }
- @Override
- public void execute(Keystone keystone, CommandLine args) {
-
- final Tenants tenants = keystone.tenants().list().execute();
-
- Table t = new Table(new TableModel<Tenant>(tenants.getList()) {
+ @Override
+ public void execute(Keystone keystone, CommandLine args) {
+
+ final Tenants tenants = keystone.tenants().list().execute();
+
+ Table t = new Table(new TableModel<Tenant>(tenants.getList()) {
- @Override
- public Column[] getHeaders() {
- return new Column[]{
- new Column("id", 32, Column.ALIGN_LEFT),
- new Column("name", 32, Column.ALIGN_LEFT),
- new Column("description", 32, Column.ALIGN_LEFT),
- new Column("enabled", 7, Column.ALIGN_LEFT)
- };
- }
+ @Override
+ public Column[] getHeaders() {
+ return new Column[]{
+ new Column("id", 32, Column.ALIGN_LEFT),
+ new Column("name", 32, Column.ALIGN_LEFT),
+ new Column("description", 32, Column.ALIGN_LEFT),
+ new Column("enabled", 7, Column.ALIGN_LEFT)
+ };
+ }
- @Override
- public String[] getRow(Tenant tenant) {
- return new String[]{
- tenant.getId(),
- tenant.getName(),
- tenant.getDescription(),
- tenant.getEnabled().toString()
- };
- }
- });
- System.out.println(t.render());
- }
+ @Override
+ public String[] getRow(Tenant tenant) {
+ return new String[]{
+ tenant.getId(),
+ tenant.getName(),
+ tenant.getDescription(),
+ tenant.getEnabled().toString()
+ };
+ }
+ });
+ System.out.println(t.render());
+ }
}