edu.internet2.middleware.grouperMessagingAWS.SqsGrouperExternalSystem 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
package edu.internet2.middleware.grouperMessagingAWS;
import java.util.List;
import org.apache.commons.lang3.StringUtils;
import edu.internet2.middleware.grouper.app.externalSystem.GrouperExternalSystem;
import edu.internet2.middleware.grouper.cfg.dbConfig.ConfigFileName;
public class SqsGrouperExternalSystem extends GrouperExternalSystem {
@Override
public List test() throws UnsupportedOperationException {
return null;
}
@Override
public ConfigFileName getConfigFileName() {
return ConfigFileName.GROUPER_CLIENT_PROPERTIES;
}
@Override
public String getConfigItemPrefix() {
if (StringUtils.isBlank(this.getConfigId())) {
throw new RuntimeException("Must have configId!");
}
return "grouper.messaging.system." + this.getConfigId() + ".";
}
@Override
public String getConfigIdRegex() {
return "^(grouper\\.messaging\\.system)\\.([^.]+)\\.(.*)$";
}
@Override
public String getPropertySuffixThatIdentifiesThisConfig() {
return "class";
}
@Override
public String getPropertyValueThatIdentifiesThisConfig() {
return GrouperMessagingSqsSystem.class.getName();
}
}