Class urn_perun_user_attribute_def_def_vsupMail
java.lang.Object
cz.metacentrum.perun.core.implApi.modules.attributes.AttributesModuleAbstract
cz.metacentrum.perun.core.implApi.modules.attributes.UserAttributesModuleAbstract
cz.metacentrum.perun.core.impl.modules.attributes.urn_perun_user_attribute_def_def_vsupMail
- All Implemented Interfaces:
AttributesModuleImplApi
,UserAttributesModuleImplApi
public class urn_perun_user_attribute_def_def_vsupMail
extends UserAttributesModuleAbstract
implements UserAttributesModuleImplApi
Attribute module for storing basic/backup school mail of persons at VŠUP. It has to be "login@vsup.cz" and is set
whenever u:d:login-namespace:vsup attribute is set/changed !!
Value can't be filled by this module, so we must allow NULL value in checkAttributeSemantics(), because when all mail attributes are required and set at once, we can't ensure correct processing order of attributes and it might perform check on old value, because of setRequiredAttributes() implementation uses in memory value instead of refreshing from DB.
On value change, map of usedMails in entityless attributes is checked and updated. Also u:d:vsupPreferredMail is set to current value, if is empty.
- Author:
- Pavel Zlámal invalid input: '<'zlamal@cesnet.cz>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
changedAttributeHook
(PerunSessionImpl session, User user, Attribute attribute) If you need to do some further work with other modules, this method do thatvoid
checkAttributeSemantics
(PerunSessionImpl sess, User user, Attribute attribute) Checks if value of assigned attribute to the user has valid semantics.void
checkAttributeSyntax
(PerunSessionImpl sess, User user, Attribute attribute) Checks if assigned attribute value to the user has valid syntax.Return attributes definition which is represented by the moduleGet list of attributes whose value are used in checking of validity of this attribute.Methods inherited from class cz.metacentrum.perun.core.implApi.modules.attributes.UserAttributesModuleAbstract
fillAttribute, getAnonymizedValue
Methods inherited from class cz.metacentrum.perun.core.implApi.modules.attributes.AttributesModuleAbstract
getAuthorizedRoles, resolveVirtualAttributeValueChange
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface cz.metacentrum.perun.core.implApi.modules.attributes.AttributesModuleImplApi
getAuthorizedRoles, resolveVirtualAttributeValueChange
Methods inherited from interface cz.metacentrum.perun.core.implApi.modules.attributes.UserAttributesModuleImplApi
fillAttribute, getAnonymizedValue
-
Field Details
-
emailPattern
-
usedMailsUrn
- See Also:
-
vsupMailUrn
- See Also:
-
vsupPreferredMailUrn
- See Also:
-
vsupExchangeMailUrn
- See Also:
-
vsupExchangeMailAliasesUrn
- See Also:
-
-
Constructor Details
-
urn_perun_user_attribute_def_def_vsupMail
public urn_perun_user_attribute_def_def_vsupMail()
-
-
Method Details
-
changedAttributeHook
public void changedAttributeHook(PerunSessionImpl session, User user, Attribute attribute) throws WrongReferenceAttributeValueException Description copied from interface:UserAttributesModuleImplApi
If you need to do some further work with other modules, this method do that- Specified by:
changedAttributeHook
in interfaceUserAttributesModuleImplApi
- Overrides:
changedAttributeHook
in classUserAttributesModuleAbstract
- Parameters:
session
- sessionuser
- the userattribute
- the attribute- Throws:
WrongReferenceAttributeValueException
-
checkAttributeSemantics
public void checkAttributeSemantics(PerunSessionImpl sess, User user, Attribute attribute) throws WrongAttributeAssignmentException, WrongReferenceAttributeValueException Description copied from interface:UserAttributesModuleImplApi
Checks if value of assigned attribute to the user has valid semantics.- Specified by:
checkAttributeSemantics
in interfaceUserAttributesModuleImplApi
- Overrides:
checkAttributeSemantics
in classUserAttributesModuleAbstract
- Parameters:
sess
- PerunSessionuser
- Userattribute
- Attribute of the user.- Throws:
WrongAttributeAssignmentException
- if attribute does not belong to appropriate entityWrongReferenceAttributeValueException
- if an referenced attribute against the parameter is to be compared is not available
-
checkAttributeSyntax
public void checkAttributeSyntax(PerunSessionImpl sess, User user, Attribute attribute) throws WrongAttributeValueException Description copied from interface:UserAttributesModuleImplApi
Checks if assigned attribute value to the user has valid syntax.- Specified by:
checkAttributeSyntax
in interfaceUserAttributesModuleImplApi
- Overrides:
checkAttributeSyntax
in classUserAttributesModuleAbstract
- Parameters:
sess
- PerunSessionuser
- Userattribute
- Attribute of the user.- Throws:
WrongAttributeValueException
- if the attribute value has wrong/illegal syntax
-
getAttributeDefinition
Description copied from interface:AttributesModuleImplApi
Return attributes definition which is represented by the module- Specified by:
getAttributeDefinition
in interfaceAttributesModuleImplApi
- Overrides:
getAttributeDefinition
in classAttributesModuleAbstract
- Returns:
- attribute definition
-
getDependencies
Description copied from interface:AttributesModuleImplApi
Get list of attributes whose value are used in checking of validity of this attribute. In other words any change of these attributes' values can cause that value of this attribute is no longer valid.An attribute should depend on all attributes which values are used in method "checkAttributeSemantics" defined in attribute module.
- Specified by:
getDependencies
in interfaceAttributesModuleImplApi
- Overrides:
getDependencies
in classAttributesModuleAbstract
- Returns:
- list of attributes this attribute depends on
- See Also:
-