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 <[email protected]> Authored: Fri Oct 30 14:56:33 2015 +0100 Committer: massi <[email protected]> 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) {
