blob: 95a35ce0556992b2a15621706e5a4f22d92902a5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.syncope.client.enduser.rest;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response;
import org.apache.syncope.common.lib.request.BooleanReplacePatchItem;
import org.apache.syncope.common.lib.request.UserCR;
import org.apache.syncope.common.lib.request.UserUR;
import org.apache.syncope.common.lib.to.ProvisioningResult;
import org.apache.syncope.common.lib.to.UserTO;
import org.apache.syncope.common.rest.api.service.UserSelfService;
/**
* Console client for invoking rest users services.
*/
public class UserSelfRestClient extends BaseRestClient {
private static final long serialVersionUID = -1575748964398293968L;
public static ProvisioningResult<UserTO> create(final UserCR createReq) {
Response response = getService(UserSelfService.class).create(createReq);
return response.readEntity(new GenericType<ProvisioningResult<UserTO>>() {
});
}
public ProvisioningResult<UserTO> update(final String etag, final UserUR updateReq) {
ProvisioningResult<UserTO> result;
synchronized (this) {
result = getService(etag, UserSelfService.class).update(updateReq).
readEntity(new GenericType<ProvisioningResult<UserTO>>() {
});
resetClient(UserSelfService.class);
}
return result;
}
public ProvisioningResult<UserTO> mustChangePassword(final String etag, final boolean value, final String key) {
UserUR userUR = new UserUR();
userUR.setKey(key);
userUR.setMustChangePassword(new BooleanReplacePatchItem.Builder().value(value).build());
return update(etag, userUR);
}
public static void changePassword(final String password) {
getService(UserSelfService.class).mustChangePassword(password);
}
public static void requestPasswordReset(final String username, final String securityAnswer) {
getService(UserSelfService.class).requestPasswordReset(username, securityAnswer);
}
}