All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aoindustries.website.struts.ResourceBundleMessageResourcesFactory Maven / Gradle / Ivy

Go to download

Core API for legacy Struts-based site framework with AOServ Platform control panels.

There is a newer version: 2.0.0
Show newest version
/*
 * aoweb-struts-core - Core API for legacy Struts-based site framework with AOServ Platform control panels.
 * Copyright (C) 2009, 2016  AO Industries, Inc.
 *     [email protected]
 *     7262 Bull Pen Cir
 *     Mobile, AL 36695
 *
 * This file is part of aoweb-struts-core.
 *
 * aoweb-struts-core is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * aoweb-struts-core is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with aoweb-struts-core.  If not, see .
 */
package com.aoindustries.website.struts;

import java.io.Serializable;
import org.apache.struts.util.MessageResources;
import org.apache.struts.util.MessageResourcesFactory;

/**
 * Sets the keywords for the page.s
 *
 * @author  AO Industries, Inc.
 */
public class ResourceBundleMessageResourcesFactory extends MessageResourcesFactory implements Serializable {

	private static final long serialVersionUID = 1L;

	@Override
	public MessageResources createResources(String config) {
		return new ResourceBundleMessageResources(this, config, this.returnNull);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy