You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "fc-business-beat (via GitHub)" <gi...@apache.org> on 2024/03/27 13:26:39 UTC

[I] Not implementing RFC 7644 3.4.2 and 3.4.3 [directory-scimple]

fc-business-beat opened a new issue, #553:
URL: https://github.com/apache/directory-scimple/issues/553

   As far as my understanding of the spec goes https://datatracker.ietf.org/doc/html/rfc7644#section-3.4.2 and https://datatracker.ietf.org/doc/html/rfc7644#section-3.4.3 are not implemented yet.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org
For additional commands, e-mail: dev-help@directory.apache.org


Re: [I] Not implementing RFC 7644 3.4.2 and 3.4.3 [directory-scimple]

Posted by "fc-business-beat (via GitHub)" <gi...@apache.org>.
fc-business-beat closed issue #553: Not implementing RFC 7644 3.4.2 and 3.4.3
URL: https://github.com/apache/directory-scimple/issues/553


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org
For additional commands, e-mail: dev-help@directory.apache.org


Re: [I] Not implementing RFC 7644 3.4.2 and 3.4.3 [directory-scimple]

Posted by "fc-business-beat (via GitHub)" <gi...@apache.org>.
fc-business-beat commented on issue #553:
URL: https://github.com/apache/directory-scimple/issues/553#issuecomment-2023164405

   I think i got it, thanks a lot!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org
For additional commands, e-mail: dev-help@directory.apache.org


Re: [I] Not implementing RFC 7644 3.4.2 and 3.4.3 [directory-scimple]

Posted by "fc-business-beat (via GitHub)" <gi...@apache.org>.
fc-business-beat commented on issue #553:
URL: https://github.com/apache/directory-scimple/issues/553#issuecomment-2022843617

   Thank you so much for the quick response! I suppose spring server example
   and my IDE not creating the methods when implementing the interface made me
   think it was missing.
   
   
   Am Mi., 27. März 2024 um 14:51 Uhr schrieb Brian Demers <
   ***@***.***>:
   
   > Thanks for reaching out @fc-business-beat
   > <https://github.com/fc-business-beat>
   > Can you provide more detail on what you are asking about?
   > Stack Overflow has a great article that suggestions what to include in an
   > post: https://stackoverflow.com/help/how-to-ask
   >
   > That said, 3.4.2 is implemented here:
   >
   > https://github.com/apache/directory-scimple/blob/develop/scim-server/src/main/java/org/apache/directory/scim/server/rest/BaseResourceTypeResourceImpl.java#L150-L169
   >
   > And 3.4.3 here:
   > https://github.com/apache/directory-scimple/blob/develop/scim-server/src/main/java/org/apache/directory/scim/server/rest/BaseResourceTypeResourceImpl.java#L205
   >
   > The interface that defines these methods
   > <https://github.com/apache/directory-scimple/blob/develop/scim-spec/scim-spec-protocol/src/main/java/org/apache/directory/scim/protocol/BaseResourceTypeResource.java#L81>,
   > does have default methods that return:
   >
   > return Response.status(Status.NOT_IMPLEMENTED).build();
   >
   > But the implementations do have those methods. I'm not sure if this was
   > causing the confusion, or if it's something else. Please let us know!
   >
   > —
   > Reply to this email directly, view it on GitHub
   > <https://github.com/apache/directory-scimple/issues/553#issuecomment-2022823384>,
   > or unsubscribe
   > <https://github.com/notifications/unsubscribe-auth/BDYRODPKKZ44GXGQHB6H4DLY2LFF3AVCNFSM6AAAAABFK4EWJGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMRSHAZDGMZYGQ>
   > .
   > You are receiving this because you were mentioned.Message ID:
   > ***@***.***>
   >
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org
For additional commands, e-mail: dev-help@directory.apache.org


Re: [I] Not implementing RFC 7644 3.4.2 and 3.4.3 [directory-scimple]

Posted by "bdemers (via GitHub)" <gi...@apache.org>.
bdemers commented on issue #553:
URL: https://github.com/apache/directory-scimple/issues/553#issuecomment-2023066010

   The SCIMple framework will map the REST request automatically to the corresponding Repository method.  All you need to do is implement the `Repository`.
   
   Does that help?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org
For additional commands, e-mail: dev-help@directory.apache.org


Re: [I] Not implementing RFC 7644 3.4.2 and 3.4.3 [directory-scimple]

Posted by "fc-business-beat (via GitHub)" <gi...@apache.org>.
fc-business-beat closed issue #553: Not implementing RFC 7644 3.4.2 and 3.4.3
URL: https://github.com/apache/directory-scimple/issues/553


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org
For additional commands, e-mail: dev-help@directory.apache.org


Re: [I] Not implementing RFC 7644 3.4.2 and 3.4.3 [directory-scimple]

Posted by "bdemers (via GitHub)" <gi...@apache.org>.
bdemers commented on issue #553:
URL: https://github.com/apache/directory-scimple/issues/553#issuecomment-2022823384

   Thanks for reaching out @fc-business-beat 
   Can you provide more detail on what you are asking about?
   Stack Overflow has a great article that suggestions what to include in an post: https://stackoverflow.com/help/how-to-ask
   
   That said, 3.4.2 is implemented here:
   https://github.com/apache/directory-scimple/blob/develop/scim-server/src/main/java/org/apache/directory/scim/server/rest/BaseResourceTypeResourceImpl.java#L150-L169
   
   And 3.4.3 here: https://github.com/apache/directory-scimple/blob/develop/scim-server/src/main/java/org/apache/directory/scim/server/rest/BaseResourceTypeResourceImpl.java#L205
   
   
   The [interface that defines these methods](https://github.com/apache/directory-scimple/blob/develop/scim-spec/scim-spec-protocol/src/main/java/org/apache/directory/scim/protocol/BaseResourceTypeResource.java#L81), does have default methods that return:
   
   ```java
   return Response.status(Status.NOT_IMPLEMENTED).build();
   ```
   
   But the implementations do have those methods.  I'm not sure if this was causing the confusion, or if it's something else.  Please let us know!
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@directory.apache.org
For additional commands, e-mail: dev-help@directory.apache.org