org.apache.chemistry.opencmis.commons.impl.endpoints.CmisAuthenticationImpl Maven / Gradle / Ivy
/*
* 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.chemistry.opencmis.commons.impl.endpoints;
import java.util.LinkedHashMap;
import org.apache.chemistry.opencmis.commons.endpoints.CmisAuthentication;
import org.apache.chemistry.opencmis.commons.endpoints.CmisEndpoint;
public class CmisAuthenticationImpl extends LinkedHashMap implements CmisAuthentication {
private static final long serialVersionUID = 1L;
private CmisEndpoint endpoint;
public CmisAuthenticationImpl(CmisEndpoint endpoint) {
if (endpoint == null) {
throw new IllegalArgumentException("Endpoitn must be set!");
}
this.endpoint = endpoint;
}
public CmisAuthenticationImpl(CmisEndpoint endpoint, String type) {
this(endpoint);
put(KEY_TYPE, type);
}
@Override
public String getType() {
return getString(KEY_TYPE);
}
@Override
public String getDisplayName() {
return getString(KEY_DISPLAY_NAME);
}
@Override
public String getDocumentationUrl() {
return getString(KEY_DOCUMENTATION_URL);
}
@Override
public Integer getPreference() {
Object value = get(KEY_PREFERENCE);
if (value instanceof Number) {
return ((Number) value).intValue();
}
return null;
}
@Override
public CmisEndpoint getEndpoint() {
return endpoint;
}
@Override
public boolean requiresCookies() {
if (CmisEndpoint.COOKIES_REQUIRED.equals(endpoint.getCookies())) {
return true;
}
String type = getType();
if (AUTH_FORM.equals(type) || AUTH_SAML.equals(type) || AUTH_LTPA.equals(type)) {
return true;
}
if (endpoint.getCsrfHeader() != null || endpoint.getCsrfParameter() == null) {
return true;
}
return false;
}
protected String getString(String key) {
Object value = get(key);
if (value instanceof String) {
return (String) value;
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy