use of org.springframework.extensions.config.Config in project acs-community-packaging by Alfresco.
the class AddContentDialog method getInlineEditableMimeTypes.
protected List<String> getInlineEditableMimeTypes() {
if ((this.inlineEditableMimeTypes == null) || (Application.isDynamicConfig(FacesContext.getCurrentInstance()))) {
this.inlineEditableMimeTypes = new ArrayList<String>(8);
// get the create mime types list from the config
ConfigService svc = Application.getConfigService(FacesContext.getCurrentInstance());
Config wizardCfg = svc.getConfig("Content Wizards");
if (wizardCfg != null) {
ConfigElement typesCfg = wizardCfg.getConfigElement("create-mime-types");
if (typesCfg != null) {
for (ConfigElement child : typesCfg.getChildren()) {
String currentMimeType = child.getAttribute("name");
this.inlineEditableMimeTypes.add(currentMimeType);
}
}
}
}
return this.inlineEditableMimeTypes;
}
use of org.springframework.extensions.config.Config in project acs-community-packaging by Alfresco.
the class BaseContentWizard method initOtherProperties.
/**
* Initialises the other properties flags from config
*/
protected void initOtherProperties() {
// TODO - review implications of these default values for dynamic/MT client
ConfigService configSvc = Application.getConfigService(FacesContext.getCurrentInstance());
if (configSvc != null) {
Config config = configSvc.getConfig("Content Wizards");
if (config != null) {
ConfigElement otherPropsCfg = config.getConfigElement("other-properties");
if (otherPropsCfg != null) {
// get the attributes
String userChoiceVisible = otherPropsCfg.getAttribute("user-choice-visible");
String userChoiceDefault = otherPropsCfg.getAttribute("user-choice-default");
// set the defaults
if (userChoiceVisible != null) {
this.otherPropertiesChoiceVisible = Boolean.parseBoolean(userChoiceVisible);
}
if (userChoiceDefault != null) {
this.showOtherProperties = Boolean.parseBoolean(userChoiceDefault);
}
}
}
}
}
use of org.springframework.extensions.config.Config in project acs-community-packaging by Alfresco.
the class BaseContentWizard method getEncoding.
/**
* @return Returns the encoding currently selected
*/
public String getEncoding() {
if (encoding == null) {
ConfigService configSvc = Application.getConfigService(FacesContext.getCurrentInstance());
Config config = configSvc.getConfig("Content Wizards");
if (config != null) {
ConfigElement defaultEncCfg = config.getConfigElement("default-encoding");
if (defaultEncCfg != null) {
String value = defaultEncCfg.getValue();
if (value != null) {
encoding = value.trim();
}
}
}
if (encoding == null || encoding.length() == 0) {
// if not configured, set to a sensible default for most character sets
encoding = "UTF-8";
}
}
return encoding;
}
use of org.springframework.extensions.config.Config in project acs-community-packaging by Alfresco.
the class CreateContentWizard method getCreateMimeTypes.
/**
* @return Returns a list of mime types to allow the user to select from
*/
public List<SelectItem> getCreateMimeTypes() {
if ((this.createMimeTypes == null) || (Application.isDynamicConfig(FacesContext.getCurrentInstance()))) {
FacesContext context = FacesContext.getCurrentInstance();
// add the well known object type to start with
this.createMimeTypes = new ArrayList<SelectItem>(5);
// add the configured create mime types to the list
ConfigService svc = Application.getConfigService(context);
Config wizardCfg = svc.getConfig("Content Wizards");
if (wizardCfg != null) {
ConfigElement typesCfg = wizardCfg.getConfigElement("create-mime-types");
if (typesCfg != null) {
for (ConfigElement child : typesCfg.getChildren()) {
String currentMimeType = child.getAttribute("name");
if (currentMimeType != null) {
String label = getSummaryMimeType(currentMimeType);
this.createMimeTypes.add(new SelectItem(currentMimeType, label));
}
}
// make sure the list is sorted by the label
QuickSort sorter = new QuickSort(this.objectTypes, "label", true, IDataContainer.SORT_CASEINSENSITIVE);
sorter.sort();
} else {
logger.warn("Could not find 'create-mime-types' configuration element");
}
} else {
logger.warn("Could not find 'Content Wizards' configuration section");
}
}
return this.createMimeTypes;
}
use of org.springframework.extensions.config.Config in project acs-community-packaging by Alfresco.
the class BrowseBean method getNodeEventListeners.
/**
* @return the Set of NodeEventListeners registered against this bean
*/
private Set<NodeEventListener> getNodeEventListeners() {
if ((this.nodeEventListeners == null) || (Application.isDynamicConfig(FacesContext.getCurrentInstance()))) {
Set<NodeEventListener> allNodeEventListeners = new HashSet<NodeEventListener>();
if (Application.isDynamicConfig(FacesContext.getCurrentInstance()) && (this.nodeEventListeners != null)) {
// for dynamic config, can add/remove node event listeners dynamically ...
// however, in case anyone is using public methods (add/removeNodeEventListener)
// we merge list here with list returned from the config
allNodeEventListeners.addAll(this.nodeEventListeners);
}
FacesContext fc = FacesContext.getCurrentInstance();
Config listenerConfig = Application.getConfigService(fc).getConfig("Node Event Listeners");
if (listenerConfig != null) {
ConfigElement listenerElement = listenerConfig.getConfigElement("node-event-listeners");
if (listenerElement != null) {
for (ConfigElement child : listenerElement.getChildren()) {
if (child.getName().equals("listener")) {
// retrieved the JSF Managed Bean identified in the config
String listenerName = child.getValue().trim();
Object bean = FacesHelper.getManagedBean(fc, listenerName);
if (bean instanceof NodeEventListener) {
allNodeEventListeners.add((NodeEventListener) bean);
}
}
}
}
}
if (Application.isDynamicConfig(FacesContext.getCurrentInstance())) {
return allNodeEventListeners;
} else {
this.nodeEventListeners = allNodeEventListeners;
}
}
return this.nodeEventListeners;
}
Aggregations