/* * JBoss, Home of Professional Open Source * * Copyright 2013 Red Hat, Inc. and/or its affiliates. * * Licensed 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.picketlink.config.federation; import org.picketlink.common.util.StringUtil; import javax.xml.crypto.dsig.CanonicalizationMethod; import java.util.HashMap; import java.util.Map; import static org.picketlink.common.util.StringUtil.isNullOrEmpty; /** * Base Type for IDP and SP * * <p> * Java class for ProviderType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ProviderType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="IdentityURL" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Trust" type="{urn:picketlink:identity-federation:config:1.0}TrustType" minOccurs="0"/> * <element name="KeyProvider" type="{urn:picketlink:identity-federation:config:1.0}KeyProviderType" * minOccurs="0"/> * <element name="MetaDataProvider" type="{urn:picketlink:identity-federation:config:1.0}MetadataProviderType" * minOccurs="0"/> * </sequence> * <attribute name="ServerEnvironment" default="picketlink"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="picketlink"/> * <enumeration value="TOMCAT"/> * </restriction> * </simpleType> * </attribute> * * <attribute name="CanonicalizationMethod" use="optional" default="http://www.w3.org/2001/10/xml-exc-c14n#WithComments" * type="string"/> * </restriction> * </complexContent> * </complexType> * </pre> */ public class ProviderType { protected String entityId; protected String identityURL; protected TrustType trust; protected KeyProviderType keyProvider; protected MetadataProviderType metaDataProvider; protected String serverEnvironment; protected String canonicalizationMethod = CanonicalizationMethod.EXCLUSIVE_WITH_COMMENTS; protected Map<String, Object> additionalOptions = new HashMap<String, Object>(); protected boolean supportsSignature = false; public String getEntityId() { return this.entityId; } public void setEntityId(String entityId) { this.entityId = entityId; } /** * Gets the value of the identityURL property. * * @return possible object is {@link String } */ public String getIdentityURL() { return identityURL; } /** * Sets the value of the identityURL property. * * @param value allowed object is {@link String } */ public void setIdentityURL(String value) { this.identityURL = value; } /** * Gets the value of the trust property. * * @return possible object is {@link TrustType } */ public TrustType getTrust() { return trust; } /** * Sets the value of the trust property. * * @param value allowed object is {@link TrustType } */ public void setTrust(TrustType value) { this.trust = value; } /** * Gets the value of the keyProvider property. * * @return possible object is {@link KeyProviderType } */ public KeyProviderType getKeyProvider() { return keyProvider; } /** * Sets the value of the keyProvider property. * * @param value allowed object is {@link KeyProviderType } */ public void setKeyProvider(KeyProviderType value) { this.keyProvider = value; } /** * Gets the value of the metaDataProvider property. * * @return possible object is {@link MetadataProviderType } */ public MetadataProviderType getMetaDataProvider() { return metaDataProvider; } /** * Sets the value of the metaDataProvider property. * * @param value allowed object is {@link MetadataProviderType } */ public void setMetaDataProvider(MetadataProviderType value) { this.metaDataProvider = value; } /** * Gets the value of the serverEnvironment property. * * @return possible object is {@link String } */ public String getServerEnvironment() { if (serverEnvironment == null) { return "picketlink"; } else { return serverEnvironment; } } /** * Sets the value of the serverEnvironment property. * * @param value allowed object is {@link String } */ public void setServerEnvironment(String value) { this.serverEnvironment = value; } /** * Gets the value of the canonicalizationMethod property. * * @return possible object is {@link String } */ public String getCanonicalizationMethod() { return canonicalizationMethod; } /** * Sets the value of the canonicalizationMethod property. * * @param value allowed object is {@link String } */ public void setCanonicalizationMethod(String canonicalizationMethod) { this.canonicalizationMethod = canonicalizationMethod; } /** * Add an option * * @param key * @param value */ public void addAdditionalOption(String key, Object value) { additionalOptions.put(key, value); } /** * Remove an option * * @param key */ public void removeAdditionalOption(String key) { additionalOptions.remove(key); } /** * Get option * * @param key * * @return */ public Object getAdditionalOption(String key) { return additionalOptions.get(key); } /** * Import values from another {@link IDPType} * * @param other */ public void importFrom(ProviderType other) { String entityId = other.getEntityId(); if (!isNullOrEmpty(entityId)) { setEntityId(entityId); } String identityUrl = other.getIdentityURL(); if (!isNullOrEmpty(identityUrl)) { setIdentityURL(identityUrl); } KeyProviderType keyProvider = other.getKeyProvider(); if (keyProvider != null) { setKeyProvider(keyProvider); } MetadataProviderType metaDataProvider = other.getMetaDataProvider(); if (metaDataProvider != null) { setMetaDataProvider(metaDataProvider); } setSupportsSignature(other.isSupportsSignature()); String can = other.getCanonicalizationMethod(); if (StringUtil.isNotNull(can)) { setCanonicalizationMethod(can); } if (trust == null) { trust = other.getTrust(); } else if (other.getTrust() != null) { trust.addDomain(other.getTrust().getDomains()); } additionalOptions.putAll(other.additionalOptions); } public boolean isSupportsSignature() { return supportsSignature; } public void setSupportsSignature(boolean supportsSignature) { this.supportsSignature = supportsSignature; } }