Package io.fathom.cloud.identity.api.os.model

Examples of io.fathom.cloud.identity.api.os.model.WrappedUser


            }

            updated = users.update(b);
        }

        WrappedUser response = new WrappedUser();
        response.user = toModel(updated);
        return response;
    }
View Full Code Here


        b.setEmail(req.email);

        UserData user = identityService.createUser(new UserCreationData(domainData, b, req.password));

        WrappedUser response = new WrappedUser();
        response.user = toModel(user);
        return response;
    }
View Full Code Here

    @Path("{id}")
    @Produces({ JSON })
    public WrappedUser getUserDetails(@PathParam("id") long id) throws CloudException {
        UserData user = getUser(id);

        WrappedUser response = new WrappedUser();
        response.user = toModel(user);

        return response;
    }
View Full Code Here

TOP

Related Classes of io.fathom.cloud.identity.api.os.model.WrappedUser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.