2010-03-05 13:18:33 +00:00

260 lines
5.4 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.Collections;
import java.util.List;
/**
* Property Definition
*
* @author David Caruana
*
*/
public class M2Property
{
private boolean isOverride = false;
private String name = null;
private String title = null;
private String description = null;
private String propertyType = null;
private boolean isProtected = false;
private boolean isMandatory = false;
private boolean isMandatoryEnforced = false;
private boolean isMultiValued = false;
private String defaultValue = null;
private Boolean isIndexed = Boolean.TRUE;
private Boolean isIndexedAtomically = null;
private Boolean isStoredInIndex = null;
private IndexTokenisationMode indexTokenisationMode = null;
private List<M2Constraint> constraints = new ArrayList<M2Constraint>();
/*package*/ M2Property()
{
}
/*package*/ M2Property(String name)
{
this.name = name;
}
public boolean isOverride()
{
return isOverride;
}
public void setOverride(boolean isOverride)
{
this.isOverride = isOverride;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
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 String getType()
{
return propertyType;
}
public void setType(String type)
{
this.propertyType = type;
}
public boolean isProtected()
{
return isProtected;
}
public void setProtected(boolean isProtected)
{
this.isProtected = isProtected;
}
public boolean isMandatory()
{
return isMandatory;
}
public void setMandatory(boolean isMandatory)
{
this.isMandatory = isMandatory;
}
public boolean isMandatoryEnforced()
{
return isMandatoryEnforced;
}
public void setMandatoryEnforced(boolean isMandatoryEnforced)
{
this.isMandatoryEnforced = isMandatoryEnforced;
}
public boolean isMultiValued()
{
return isMultiValued;
}
public void setMultiValued(boolean isMultiValued)
{
this.isMultiValued = isMultiValued;
}
public String getDefaultValue()
{
return defaultValue;
}
public void setDefaultValue(String defaultValue)
{
this.defaultValue = defaultValue;
}
public Boolean isIndexed()
{
return isIndexed;
}
public void setIndexed(boolean isIndexed)
{
this.isIndexed = Boolean.valueOf(isIndexed);
}
public Boolean isStoredInIndex()
{
return isStoredInIndex;
}
public void setStoredInIndex(boolean isStoredInIndex)
{
this.isStoredInIndex = Boolean.valueOf(isStoredInIndex);
}
public Boolean isIndexedAtomically()
{
return isIndexedAtomically;
}
public void setIndexedAtomically(boolean isIndexedAtomically)
{
this.isIndexedAtomically = Boolean.valueOf(isIndexedAtomically);
}
public IndexTokenisationMode getIndexTokenisationMode()
{
return indexTokenisationMode;
}
public void setIndexTokenisationMode(IndexTokenisationMode indexTokenisationMode)
{
this.indexTokenisationMode = indexTokenisationMode;
}
public List<M2Constraint> getConstraints()
{
if (constraints == null)
{
return Collections.emptyList();
}
else
{
return constraints;
}
}
public boolean hasConstraints()
{
return ((this.constraints != null) && (constraints.size() > 0));
}
public M2Constraint addConstraintRef(String refName)
{
M2Constraint constraint = new M2Constraint();
constraint.setRef(refName);
constraints.add(constraint);
return constraint;
}
public void removeConstraintRef(String refName)
{
List<M2Constraint> cons = new ArrayList<M2Constraint>(getConstraints());
for (M2Constraint con : cons)
{
if (con.getRef().equals(refName))
{
constraints.remove(con);
}
}
}
}