All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.psu.swe.scim.spec.protocol.UserResource Maven / Gradle / Ivy

package edu.psu.swe.scim.spec.protocol;

import io.swagger.annotations.Api;

import javax.ws.rs.Path;

import edu.psu.swe.scim.spec.resources.ScimUser;

//@formatter:off
/**
 * From SCIM Protocol Specification, section 3, page 9
 * 
 * @see Scim spec section 3.2
 * 
 * Resource Endpoint         Operations             Description
   -------- ---------------- ---------------------- --------------------
   User     /Users           GET (Section 3.4.1),   Retrieve, add,
                             POST (Section 3.3),    modify Users.
                             PUT (Section 3.5.1),
                             PATCH (Section 3.5.2),
                             DELETE (Section 3.6)

 * @author chrisharm
 *
 */
//@formatter:on

@Path("Users")
@Api("SCIM")
public interface UserResource extends BaseResourceTypeResource {
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy