Repository: syncope Updated Branches: refs/heads/master 2f50e2979 -> 27fc4be7e
Sorry Jenkins and thanks for your patience, SYNCOPE-158 Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/27fc4be7 Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/27fc4be7 Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/27fc4be7 Branch: refs/heads/master Commit: 27fc4be7ed5b913a36618f5e580692ef643afe6d Parents: 2f50e29 Author: massi <[email protected]> Authored: Fri Oct 30 14:50:23 2015 +0100 Committer: massi <[email protected]> Committed: Fri Oct 30 14:50:23 2015 +0100 ---------------------------------------------------------------------- .../commands/schema/SchemaSyncopeOperations.java | 8 ++++---- .../cli/commands/self/WorkflowResultManager.java | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/27fc4be7/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 c5e8097..c8f0a6d 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, null); + return schemaService.list(schemaType); } public <T extends AbstractSchemaTO> List<T> listVirtual() { - return schemaService.list(SchemaType.VIRTUAL, null); + return schemaService.list(SchemaType.VIRTUAL); } public <T extends AbstractSchemaTO> List<T> listPlain() { - return schemaService.list(SchemaType.PLAIN, null); + return schemaService.list(SchemaType.PLAIN); } public <T extends AbstractSchemaTO> List<T> listDerived() { - return schemaService.list(SchemaType.DERIVED, null); + return schemaService.list(SchemaType.DERIVED); } public void delete(final SchemaType schemaType, final String schemaName) { http://git-wip-us.apache.org/repos/asf/syncope/blob/27fc4be7/client/cli/src/main/java/org/apache/syncope/client/cli/commands/self/WorkflowResultManager.java ---------------------------------------------------------------------- diff --git a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/self/WorkflowResultManager.java b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/self/WorkflowResultManager.java index 118d9fe..f46be07 100644 --- a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/self/WorkflowResultManager.java +++ b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/self/WorkflowResultManager.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ package org.apache.syncope.client.cli.commands.self; import org.apache.syncope.client.cli.commands.CommonsResultManager;
