mirror of
https://github.com/alkacon/opencms-core.git
synced 2026-01-13 05:37:08 +00:00
230 lines
5.1 KiB
Java
230 lines
5.1 KiB
Java
/*
|
|
* This library is part of OpenCms -
|
|
* the Open Source Content Management System
|
|
*
|
|
* Copyright (c) Alkacon Software GmbH & Co. KG (https://www.alkacon.com)
|
|
*
|
|
* This library 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 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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.
|
|
*
|
|
* For further information about Alkacon Software GmbH & Co. KG, please see the
|
|
* company website: https://www.alkacon.com
|
|
*
|
|
* For further information about OpenCms, please see the
|
|
* project website: https://www.opencms.org
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
package org.opencms.setup;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.regex.Pattern;
|
|
|
|
/**
|
|
* Module group data.<p>
|
|
*
|
|
* @since 7.0.4
|
|
*/
|
|
public class CmsSetupComponent {
|
|
|
|
/** The default check flag. */
|
|
private boolean m_checked;
|
|
|
|
/** The dependencies of the setup component. */
|
|
private List<String> m_dependencies;
|
|
|
|
/** The description for the setup component. */
|
|
private String m_description;
|
|
|
|
/** The ID of the setup component. */
|
|
private String m_id;
|
|
|
|
/** The module's regex. */
|
|
private Pattern m_modulesRegex;
|
|
|
|
/** The name of the setup component. */
|
|
private String m_name;
|
|
|
|
/** The position of the setup component. */
|
|
private int m_position;
|
|
|
|
/**
|
|
* Returns the dependencies.<p>
|
|
*
|
|
* @return the dependencies
|
|
*/
|
|
public List<String> getDependencies() {
|
|
|
|
return m_dependencies;
|
|
}
|
|
|
|
/**
|
|
* Returns the description.<p>
|
|
*
|
|
* @return the description
|
|
*/
|
|
public String getDescription() {
|
|
|
|
return m_description;
|
|
}
|
|
|
|
/**
|
|
* Returns the id.<p>
|
|
*
|
|
* @return the id
|
|
*/
|
|
public String getId() {
|
|
|
|
return m_id;
|
|
}
|
|
|
|
/**
|
|
* Returns the modules regular expression.<p>
|
|
*
|
|
* @return the modules regular expression
|
|
*/
|
|
public Pattern getModulesRegex() {
|
|
|
|
return m_modulesRegex;
|
|
}
|
|
|
|
/**
|
|
* Returns the name.<p>
|
|
*
|
|
* @return the name
|
|
*/
|
|
public String getName() {
|
|
|
|
return m_name;
|
|
}
|
|
|
|
/**
|
|
* Returns the position.<p>
|
|
*
|
|
* @return the position
|
|
*/
|
|
public int getPosition() {
|
|
|
|
return m_position;
|
|
}
|
|
|
|
/**
|
|
* Checks if checked by default.<p>
|
|
*
|
|
* @return if checked by default
|
|
*/
|
|
public boolean isChecked() {
|
|
|
|
return m_checked;
|
|
}
|
|
|
|
/**
|
|
* Matches the module regular expression against the given module name.
|
|
*
|
|
* @param module the module name to match
|
|
*
|
|
* @return <code>true</code> if it matches
|
|
*/
|
|
public boolean match(String module) {
|
|
|
|
return m_modulesRegex.matcher(module).matches();
|
|
}
|
|
|
|
/**
|
|
* Sets if checked by default.<p>
|
|
*
|
|
* @param checked the checked flag to set
|
|
*/
|
|
public void setChecked(boolean checked) {
|
|
|
|
m_checked = checked;
|
|
}
|
|
|
|
/**
|
|
* Sets the dependencies.<p>
|
|
*
|
|
* @param dependencies the dependencies to set
|
|
*/
|
|
public void setDependencies(List<String> dependencies) {
|
|
|
|
m_dependencies = new ArrayList<String>(dependencies);
|
|
}
|
|
|
|
/**
|
|
* Sets the description.<p>
|
|
*
|
|
* @param description the description to set
|
|
*/
|
|
public void setDescription(String description) {
|
|
|
|
m_description = description;
|
|
}
|
|
|
|
/**
|
|
* Sets the id.<p>
|
|
*
|
|
* @param id the id to set
|
|
*/
|
|
public void setId(String id) {
|
|
|
|
m_id = id;
|
|
}
|
|
|
|
/**
|
|
* Sets the modules regular expression.<p>
|
|
*
|
|
* @param regex the regular expression to set
|
|
*/
|
|
public void setModulesRegex(String regex) {
|
|
|
|
m_modulesRegex = Pattern.compile(regex);
|
|
}
|
|
|
|
/**
|
|
* Sets the name.<p>
|
|
*
|
|
* @param name the name to set
|
|
*/
|
|
public void setName(String name) {
|
|
|
|
m_name = name;
|
|
}
|
|
|
|
/**
|
|
* Sets the position.<p>
|
|
*
|
|
* @param position the position to set
|
|
*/
|
|
public void setPosition(int position) {
|
|
|
|
m_position = position;
|
|
}
|
|
|
|
/**
|
|
* @see java.lang.Object#toString()
|
|
*/
|
|
@Override
|
|
public String toString() {
|
|
|
|
StringBuffer ret = new StringBuffer();
|
|
ret.append("[CmsSetupGroupBean: ");
|
|
ret.append("id=").append(m_id).append(", ");
|
|
ret.append("name=").append(m_name).append(", ");
|
|
ret.append("description=").append(m_description).append(", ");
|
|
ret.append("dependencies=").append(m_dependencies).append(", ");
|
|
ret.append("moduleRegex=").append(m_modulesRegex.pattern()).append("]");
|
|
return ret.toString();
|
|
}
|
|
}
|