You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by ma...@apache.org on 2015/10/30 14:57:20 UTC

syncope git commit: undo..., SYNCOPE-158

Repository: syncope
Updated Branches:
  refs/heads/master 27fc4be7e -> d29be2af7


undo..., SYNCOPE-158


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/d29be2af
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/d29be2af
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/d29be2af

Branch: refs/heads/master
Commit: d29be2af7d68b8d726b28d441b2fa1f6b12e89ce
Parents: 27fc4be
Author: massi <ma...@tirasa.net>
Authored: Fri Oct 30 14:56:33 2015 +0100
Committer: massi <ma...@tirasa.net>
Committed: Fri Oct 30 14:56:33 2015 +0100

----------------------------------------------------------------------
 .../client/cli/commands/schema/SchemaSyncopeOperations.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/d29be2af/client/cli/src/main/java/org/apache/syncope/client/cli/commands/schema/SchemaSyncopeOperations.java
----------------------------------------------------------------------
diff --git a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/schema/SchemaSyncopeOperations.java b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/schema/SchemaSyncopeOperations.java
index c8f0a6d..c5e8097 100644
--- a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/schema/SchemaSyncopeOperations.java
+++ b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/schema/SchemaSyncopeOperations.java
@@ -33,19 +33,19 @@ public class SchemaSyncopeOperations {
     }
 
     public <T extends AbstractSchemaTO> List<T> list(final SchemaType schemaType) {
-        return schemaService.list(schemaType);
+        return schemaService.list(schemaType, null);
     }
 
     public <T extends AbstractSchemaTO> List<T> listVirtual() {
-        return schemaService.list(SchemaType.VIRTUAL);
+        return schemaService.list(SchemaType.VIRTUAL, null);
     }
 
     public <T extends AbstractSchemaTO> List<T> listPlain() {
-        return schemaService.list(SchemaType.PLAIN);
+        return schemaService.list(SchemaType.PLAIN, null);
     }
 
     public <T extends AbstractSchemaTO> List<T> listDerived() {
-        return schemaService.list(SchemaType.DERIVED);
+        return schemaService.list(SchemaType.DERIVED, null);
     }
 
     public void delete(final SchemaType schemaType, final String schemaName) {