Repository: syncope Updated Branches: refs/heads/master f237681bc -> a3e23c1f1
Minor changes Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/7b2a28d7 Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/7b2a28d7 Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/7b2a28d7 Branch: refs/heads/master Commit: 7b2a28d7df0eaa712f132a960ad5c303b9be5f61 Parents: f237681 Author: Francesco Chicchiriccò <[email protected]> Authored: Tue Oct 13 08:55:30 2015 +0200 Committer: Francesco Chicchiriccò <[email protected]> Committed: Tue Oct 13 08:55:30 2015 +0200 ---------------------------------------------------------------------- .../apache/syncope/common/rest/api/service/LoggerService.java | 2 +- .../apache/syncope/common/rest/api/service/SchemaService.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/7b2a28d7/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/LoggerService.java ---------------------------------------------------------------------- diff --git a/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/LoggerService.java b/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/LoggerService.java index 3b89b7c..763efc3 100644 --- a/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/LoggerService.java +++ b/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/LoggerService.java @@ -36,7 +36,7 @@ import org.apache.syncope.common.lib.types.LoggerType; /** * REST operations for logging and auditing. */ -@Path("logger") +@Path("loggers") public interface LoggerService extends JAXRSService { /** http://git-wip-us.apache.org/repos/asf/syncope/blob/7b2a28d7/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/SchemaService.java ---------------------------------------------------------------------- diff --git a/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/SchemaService.java b/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/SchemaService.java index 4555bd9..7c1a43a 100644 --- a/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/SchemaService.java +++ b/common/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/SchemaService.java @@ -45,7 +45,7 @@ public interface SchemaService extends JAXRSService { * @param <T> actual SchemaTO * @param type type for schemas to be read * @param key name of schema to be read - * @return schema matching the given kind, type and name + * @return schema matching the given type and name */ @GET @Path("{key}") @@ -54,11 +54,11 @@ public interface SchemaService extends JAXRSService { @NotNull @PathParam("type") SchemaType type, @NotNull @PathParam("key") String key); /** - * Returns a list of schemas with matching kind and type. + * Returns a list of schemas with matching type. * * @param <T> actual SchemaTO * @param type type for schemas to be listed - * @return list of schemas with matching kind and type + * @return list of schemas with matching type */ @GET @Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
