mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18931 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
133 lines
2.9 KiB
Java
133 lines
2.9 KiB
Java
/*
|
|
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco 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.
|
|
*
|
|
* Alfresco 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 Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.repo.dictionary;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Abstract Property Constraint.
|
|
*
|
|
* @author Derek Hulley
|
|
*/
|
|
public class M2Constraint
|
|
{
|
|
private String name;
|
|
private String ref;
|
|
private String type;
|
|
private String title;
|
|
private String description;
|
|
private List<M2NamedValue> parameters = new ArrayList<M2NamedValue>(2);
|
|
|
|
/*package*/ M2Constraint()
|
|
{
|
|
}
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
return this.name;
|
|
}
|
|
|
|
public String getName()
|
|
{
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name)
|
|
{
|
|
this.name = name;
|
|
}
|
|
|
|
public String getRef()
|
|
{
|
|
return ref;
|
|
}
|
|
|
|
public void setRef(String refName)
|
|
{
|
|
this.ref = refName;
|
|
}
|
|
|
|
public String getType()
|
|
{
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type)
|
|
{
|
|
this.type = type;
|
|
}
|
|
|
|
public String getTitle()
|
|
{
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title)
|
|
{
|
|
this.title = title;
|
|
}
|
|
|
|
public String getDescription()
|
|
{
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description)
|
|
{
|
|
this.description = description;
|
|
}
|
|
|
|
public List<M2NamedValue> getParameters()
|
|
{
|
|
return parameters;
|
|
}
|
|
|
|
public M2NamedValue createParameter(String name, String simpleValue)
|
|
{
|
|
M2NamedValue param = new M2NamedValue();
|
|
param.setName(name);
|
|
param.setSimpleValue(simpleValue);
|
|
parameters.add(param);
|
|
return param;
|
|
}
|
|
|
|
public M2NamedValue createParameter(String name, List<String> listValue)
|
|
{
|
|
M2NamedValue param = new M2NamedValue();
|
|
param.setName(name);
|
|
param.setListValue(listValue);
|
|
parameters.add(param);
|
|
return param;
|
|
}
|
|
|
|
public void removeParameter(String name)
|
|
{
|
|
List<M2NamedValue> params = new ArrayList<M2NamedValue>(getParameters());
|
|
for (M2NamedValue param : params)
|
|
{
|
|
if (param.getName().equals(name))
|
|
{
|
|
parameters.remove(param);
|
|
}
|
|
}
|
|
}
|
|
}
|