package com.sun.jbi.jsf.bean;
public class CompAppConfig
{
CompAppConfig(String aDisplayName,
boolean isPassword,
boolean isRequired,
String aName,
String aType,
String aValue)
{
mDisplayName = aDisplayName;
mIsPassword = isPassword;
mIsRequired = isRequired;
mName = aName;
mType = aType;
mValue = aValue;
}
public String getName()
{
return mName;
}
public String getDisplayName()
{
return mDisplayName;
}
public String getType()
{
return mType;
}
public String getValue()
{
return mValue;
}
public boolean getIsPassword()
{
return mIsPassword;
}
public boolean getIsRequired()
{
return mIsRequired;
}
public boolean isPassword()
{
return mIsPassword;
}
public boolean isRequired()
{
return mIsRequired;
}
public void setName(String aName)
{
mName = aName;
}
public void setDisplayName(String aDisplayName)
{
mDisplayName = aDisplayName;
}
public void setIsPassword(boolean isPassword)
{
mIsPassword = isPassword;
}
public void setIsRequired(boolean isRequired)
{
mIsRequired = isRequired;
}
public void setValue(String aValue)
{
mValue = aValue;
}
public void setType(String aType)
{
mType = aType;
}
public String toString()
{
String result = "[CompAppConfig, mDisplayName=" + mDisplayName +
", mIsPassword=" + mIsPassword +
", mIsRequired=" + mIsRequired +
", mName=" + mName +
", mType=" + mType +
", mValue=" + mValue + "]";
return result;
}
private String mDisplayName;
private boolean mIsPassword;
private boolean mIsRequired;
private String mName;
private String mType;
private String mValue;
}
|