edu.internet2.middleware.grouper.grouperUi.beans.ui.CommonRequestContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper-ui Show documentation
Show all versions of grouper-ui Show documentation
Internet2 Groups Management User Interface
/*******************************************************************************
* 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.
******************************************************************************/
package edu.internet2.middleware.grouper.grouperUi.beans.ui;
import java.util.Collection;
import org.apache.commons.logging.Log;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiAttributeDef;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiAttributeDefName;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiEntity;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiGroup;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiMember;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiPrivilege;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiService;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiStem;
import edu.internet2.middleware.grouper.grouperUi.beans.api.GuiSubject;
import edu.internet2.middleware.grouper.ui.util.GrouperUiConfig;
import edu.internet2.middleware.grouper.util.GrouperUtil;
import edu.internet2.middleware.subject.Source;
import edu.internet2.middleware.subject.provider.SourceManager;
/**
* common elements used across the UI
* @author mchyzer
*
*/
public class CommonRequestContainer {
/**
* error for screen (unescaped)
*/
private String error;
/**
* error for screen (unescaped)
* @return the error
*/
public String getError() {
return this.error;
}
/**
* error for screen (unescaped)
* @param error1 the error to set
*/
public void setError(String error1) {
this.error = error1;
}
/**
* email address in error messages
*/
private String emailAddress;
/**
* email address in error messages
* @return the emailAddress
*/
public String getEmailAddress() {
return this.emailAddress;
}
/**
* email address in error messages
* @param emailAddress1 the emailAddress to set
*/
public void setEmailAddress(String emailAddress1) {
this.emailAddress = emailAddress1;
}
/**
* sources
* @return set of sources
*/
public Collection