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

org.apache.syncope.client.console.rest.SAML2IdPsRestClient Maven / Gradle / Ivy

There is a newer version: 2.1.14
Show newest version
/*
 * 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.io.InputStream;
import java.util.List;
import java.util.Set;
import javax.ws.rs.core.MediaType;
import org.apache.syncope.client.console.SyncopeConsoleSession;
import org.apache.syncope.common.lib.to.SAML2IdPTO;
import org.apache.syncope.common.rest.api.service.SAML2IdPService;

public class SAML2IdPsRestClient extends BaseRestClient {

    private static final long serialVersionUID = -5084300184764037527L;

    public List list() {
        return getService(SAML2IdPService.class).list();
    }

    public Set getActionsClasses() {
        return getService(SAML2IdPService.class).getActionsClasses();
    }

    public Set getRequestedAuthnContextProviderClasses() {
        return getService(SAML2IdPService.class).getRequestedAuthnContextProviderClasses();
    }

    public void importIdPs(final InputStream input) {
        SyncopeConsoleSession.get().
                getService(MediaType.APPLICATION_XML_TYPE, SAML2IdPService.class).importFromMetadata(input);
    }

    public SAML2IdPTO read(final String key) {
        return getService(SAML2IdPService.class).read(key);
    }

    public void update(final SAML2IdPTO idp) {
        getService(SAML2IdPService.class).update(idp);
    }

    public void delete(final String key) {
        getService(SAML2IdPService.class).delete(key);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy