edu.internet2.middleware.grouper.ws.util.GrouperWsVersionUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper-ws Show documentation
Show all versions of grouper-ws Show documentation
Internet2 Groups Management WS Core
/*******************************************************************************
* Copyright 2012 Internet2
*
* 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 edu.internet2.middleware.grouper.ws.util;
import edu.internet2.middleware.grouper.misc.GrouperVersion;
import edu.internet2.middleware.grouper.ws.coresoap.WsSubjectLookup;
import edu.internet2.middleware.grouper.ws.coresoap.WsAddMemberResult.WsAddMemberResultCode;
import edu.internet2.middleware.grouper.ws.coresoap.WsSubjectLookup.SubjectFindResult;
import edu.internet2.middleware.grouper.ws.rest.GrouperRestServlet;
/**
* WS grouper version utils
* @author mchyzer
*
*/
public class GrouperWsVersionUtils {
/**
* result code changed in 1.4 to include a response for if the membership already existed
* @param didntAlreadyExist
* @param subjectFindResult
* @param canRead if the user can read the members or not
* @return the code success or if it already existed
*/
public static WsAddMemberResultCode addMemberSuccessResultCode(boolean didntAlreadyExist,
WsSubjectLookup.SubjectFindResult subjectFindResult, boolean canRead) {
//20140618: mch: not sure whats going on here, not sure why subjectFindResult factors
//into it, and i dont know why SUCCESS is returned and not SUCCESS_CREATED
if (retrieveCurrentClientVersion().greaterOrEqualToArg(GrouperVersion.valueOfIgnoreCase("v1_4_000")) && canRead) {
if (subjectFindResult == SubjectFindResult.SUCCESS_CREATED) {
return WsAddMemberResultCode.SUCCESS_CREATED;
}
//now we have two codes
return didntAlreadyExist ? WsAddMemberResultCode.SUCCESS : WsAddMemberResultCode.SUCCESS_ALREADY_EXISTED;
}
//before 1.4, all we had was success
return WsAddMemberResultCode.SUCCESS;
}
/** current client version */
public static ThreadLocal currentClientVersion = new ThreadLocal();
/**
* put the current client version
* @param clientVersion
* @param warnings
*/
public static void assignCurrentClientVersion(GrouperVersion clientVersion, StringBuilder warnings) {
currentClientVersion.set(clientVersion);
if (GrouperVersion.currentVersion().lessThanMajorMinorArg(clientVersion, false)) {
String warning = "Client version: " + clientVersion + " is greater than (major/minor) server version: " + GrouperVersion.currentVersion();
if (warnings.indexOf(warning) == -1) {
if (warning.length() > 0) {
warnings.append(", ");
}
warnings.append(warning);
}
}
}
/**
* put the current client version
*/
public static void removeCurrentClientVersion() {
currentClientVersion.remove();
}
/**
* put the current client version
* @param soapOnly true if only doing this for rest
*/
public static void removeCurrentClientVersion(boolean soapOnly) {
if (soapOnly) {
if (!GrouperRestServlet.isRestRequest()) {
currentClientVersion.remove();
}
} else {
currentClientVersion.remove();
}
}
/**
* return current client version or null
* @return the current client version or null
*/
public static GrouperVersion retrieveCurrentClientVersion() {
return currentClientVersion.get();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy