Package org.apache.syncope.client.services.proxy

Source Code of org.apache.syncope.client.services.proxy.ResourceServiceProxy

/*
* 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.services.proxy;

import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URLEncoder;
import java.util.Arrays;
import java.util.List;
import java.util.Set;

import javax.ws.rs.InternalServerErrorException;
import javax.ws.rs.core.Response;

import org.apache.syncope.common.SyncopeConstants;
import org.apache.syncope.common.services.ResourceService;
import org.apache.syncope.common.to.BulkAction;
import org.apache.syncope.common.to.BulkActionRes;
import org.apache.syncope.common.to.ConnObjectTO;
import org.apache.syncope.common.to.PropagationActionClassTO;
import org.apache.syncope.common.to.ResourceTO;
import org.apache.syncope.common.types.AttributableType;
import org.apache.syncope.common.util.CollectionWrapper;
import org.springframework.web.client.RestTemplate;

public class ResourceServiceProxy extends SpringServiceProxy implements ResourceService {

    public ResourceServiceProxy(final String baseUrl, final RestTemplate restTemplate) {
        super(baseUrl, restTemplate);
    }

    @Override
    public Response create(final ResourceTO resourceTO) {
        ResourceTO resource = getRestTemplate().postForObject(baseUrl + "resource/create.json", resourceTO,
                ResourceTO.class);

        try {
            URI location = URI.create(baseUrl
                    + "resource/read/"
                    + URLEncoder.encode(resource.getName(), SyncopeConstants.DEFAULT_ENCODING)
                    + ".json");
            return Response.created(location).
                    header(SyncopeConstants.REST_HEADER_ID, resource.getName()).
                    build();
        } catch (UnsupportedEncodingException e) {
            throw new InternalServerErrorException(e);
        }
    }

    @Override
    public void update(final String resourceName, final ResourceTO resourceTO) {
        getRestTemplate().postForObject(baseUrl + "resource/update.json", resourceTO, ResourceTO.class);
    }

    @Override
    public void delete(final String resourceName) {
        getRestTemplate().getForObject(baseUrl + "resource/delete/{resourceName}.json", ResourceTO.class, resourceName);
    }

    @Override
    public ResourceTO read(final String resourceName) {
        return getRestTemplate().getForObject(baseUrl + "resource/read/{resourceName}.json", ResourceTO.class,
                resourceName);
    }

    @Override
    public Set<PropagationActionClassTO> getPropagationActionsClasses() {
        return CollectionWrapper.wrapPropagationActionClasses(
                handlePossiblyEmptyStringCollection(baseUrl + "resource/propagationActionsClasses.json"));
    }

    @Override
    public List<ResourceTO> list() {
        return Arrays.asList(getRestTemplate().getForObject(baseUrl + "resource/list.json", ResourceTO[].class));
    }

    @Override
    public List<ResourceTO> list(final Long connInstanceId) {
        return connInstanceId == null
                ? list()
                : Arrays.asList(getRestTemplate().getForObject(baseUrl + "resource/list.json?connInstanceId={connId}",
                ResourceTO[].class, connInstanceId));
    }

    @Override
    public ConnObjectTO getConnectorObject(final String resourceName, final AttributableType type, final Long id) {
        return getRestTemplate().getForObject(baseUrl + "resource/{resourceName}/read/{type}/{id}.json",
                ConnObjectTO.class, resourceName, type.name(), id);
    }

    @Override
    public boolean check(final ResourceTO resourceTO) {
        return getRestTemplate().postForObject(baseUrl + "resource/check.json", resourceTO, Boolean.class).
                booleanValue();
    }

    @Override
    public BulkActionRes bulkAction(final BulkAction bulkAction) {
        return getRestTemplate().postForObject(baseUrl + "resource/bulk", bulkAction, BulkActionRes.class);
    }
}
TOP

Related Classes of org.apache.syncope.client.services.proxy.ResourceServiceProxy

TOP
Copyright © 2018 www.massapi.com. 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.