edu.internet2.middleware.grouper.app.gsh.addComposite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper Show documentation
Show all versions of grouper Show documentation
Internet2 Groups Management Toolkit
/**
* Copyright 2014 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.
*/
/*
* Copyright (C) 2006-2007 blair christensen.
* All Rights Reserved.
*
* You may use and distribute under the same terms as Grouper itself.
*/
package edu.internet2.middleware.grouper.app.gsh;
import bsh.CallStack;
import bsh.Interpreter;
import edu.internet2.middleware.grouper.Composite;
import edu.internet2.middleware.grouper.Group;
import edu.internet2.middleware.grouper.GroupFinder;
import edu.internet2.middleware.grouper.GrouperSession;
import edu.internet2.middleware.grouper.exception.GroupNotFoundException;
import edu.internet2.middleware.grouper.exception.InsufficientPrivilegeException;
import edu.internet2.middleware.grouper.exception.MemberAddException;
import edu.internet2.middleware.grouper.misc.CompositeType;
/**
* Add a composite member.
*
* @author blair christensen.
* @version $Id: addComposite.java,v 1.3 2009-03-15 06:37:23 mchyzer Exp $
* @since 0.0.1
*/
public class addComposite {
// PUBLIC CLASS METHODS //
/**
* Add a composite member.
*
* @param i BeanShell interpreter.
* @param stack BeanShell call stack.
* @param group Add {@link Composite} to {@link Group} with this name.
* @param type {@link CompositeType}.
* @param left Left factor {@link Group}.
* @param right Right factor {@link Group}.
* @return True if succeeds.
* @throws GrouperShellException
* @since 0.0.1
*/
public static boolean invoke(
Interpreter i, CallStack stack, String group, CompositeType type, String left, String right
)
throws GrouperShellException
{
GrouperShell.setOurCommand(i, true);
try {
GrouperSession s = GrouperShell.getSession(i);
return invoke(s, group, type, left, right);
}
catch (GroupNotFoundException eGNF) {
GrouperShell.error(i, eGNF);
}
catch (InsufficientPrivilegeException eIP) {
GrouperShell.error(i, eIP);
}
catch (MemberAddException eMA) {
GrouperShell.error(i, eMA);
}
return false;
}
/**
* Add a composite member.
*
* @param grouperSession
* @param group Add {@link Composite} to {@link Group} with this name.
* @param type {@link CompositeType}.
* @param left Left factor {@link Group}.
* @param right Right factor {@link Group}.
* @return True if succeeds.
*/
public static boolean invoke(GrouperSession grouperSession, String group, CompositeType type, String left, String right) {
Group g = GroupFinder.findByName(grouperSession, group, true);
Group l = GroupFinder.findByName(grouperSession, left, true);
Group r = GroupFinder.findByName(grouperSession, right, true);
g.addCompositeMember(type, l, r);
return true;
}
} // public class addComposite
© 2015 - 2024 Weber Informatics LLC | Privacy Policy