You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by GitBox <gi...@apache.org> on 2018/07/26 13:57:57 UTC

[GitHub] smoyer64 closed pull request #10: Correcting code formatting in README.md

smoyer64 closed pull request #10: Correcting code formatting in README.md
URL: https://github.com/apache/directory-scimple/pull/10
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/README.md b/README.md
index 3fad5cc..0a44bd0 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,6 @@
-# SCIMple
+[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
+
+# Apache Directory SCIMple
 
 Apache's Java EE implmentation of the [Simple Cross-domain Identity
 Management](http://www.simplecloud.info/) (SCIM) version 2.0 specfification
@@ -37,7 +39,7 @@ Please visit our project page at https://directory.apache.org/scimple.
 Examples of the project's declarative syntax are shown below.  The first example
 shows how a SCIM resource is declared:
 
-```(java)
+```java
 @Data
 @EqualsAndHashCode(callSuper = true)
 @ScimResourceType(
@@ -74,7 +76,7 @@ In the example above, annotations are used at the class level and member level
 to declare a new SCIM resource and its attributes respectively.  The example
 below shows the equivalent declaration for a resource Extension:
 
-```(java)
+```java
 @XmlRootElement
 @XmlAccessorType(XmlAccessType.NONE)
 @ScimExtensionType(
@@ -115,7 +117,9 @@ suitably annotated inner classes.
 Implementations are fully customizable without altering the core server code.
 The example below shows how the implementation for a provider is declared:
 
-    public class InMemoryUserService implements Provider<ScimUser> {
+```java
+public class InMemoryUserService implements Provider<ScimUser> {
+```
 
 Implementing the provider interface allows the customization of create,
 retrieve, update and delete methods (as well as find).  Customization is


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services