blob: f4ae48d9dfc1f27610daac4217c0d0630c276e6b [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.console.rest;
import java.util.List;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response;
import org.apache.syncope.common.lib.request.AnyObjectCR;
import org.apache.syncope.common.lib.request.AnyObjectUR;
import org.apache.syncope.common.lib.to.AnyObjectTO;
import org.apache.syncope.common.lib.to.ProvisioningResult;
import org.apache.syncope.common.rest.api.beans.AnyQuery;
import org.apache.syncope.common.rest.api.service.AnyObjectService;
import org.apache.syncope.common.rest.api.service.AnyService;
import org.apache.wicket.extensions.markup.html.repeater.util.SortParam;
/**
* Console client for invoking Rest any type class services.
*/
public class AnyObjectRestClient extends AbstractAnyRestClient<AnyObjectTO> {
private static final long serialVersionUID = -8874495991295283249L;
@Override
protected Class<? extends AnyService<AnyObjectTO>> getAnyServiceClass() {
return AnyObjectService.class;
}
public static ProvisioningResult<AnyObjectTO> create(final AnyObjectCR createReq) {
Response response = getService(AnyObjectService.class).create(createReq);
return response.readEntity(new GenericType<>() {
});
}
public ProvisioningResult<AnyObjectTO> update(final String etag, final AnyObjectUR updateReq) {
ProvisioningResult<AnyObjectTO> result;
synchronized (this) {
result = getService(etag, AnyObjectService.class).update(updateReq).
readEntity(new GenericType<>() {
});
resetClient(getAnyServiceClass());
}
return result;
}
@Override
public int count(final String realm, final String fiql, final String type) {
return getService(AnyObjectService.class).
search(new AnyQuery.Builder().realm(realm).fiql(fiql).page(1).size(0).build()).
getTotalCount();
}
@Override
public List<AnyObjectTO> search(final String realm, final String fiql, final int page, final int size,
final SortParam<String> sort,
final String type) {
return getService(AnyObjectService.class).search(
new AnyQuery.Builder().realm(realm).fiql(fiql).page(page).size(size).
orderBy(toOrderBy(sort)).details(false).build()).getResult();
}
}