Package com.jalios.util
Interface JPropertiesListener
-
- All Known Implementing Classes:
AccessControlManager
,AlertManager
,AnalyticsManager
,ApplicationManager
,AuthenticationCookiePurgeAlarmListener
,AvoidanceLinkManager
,CategoryBrowserManager
,Channel
,ChartManager
,ClientCertificateAuthenticationHandler
,ComparatorManager
,ConnectionEventManager
,ContentSecurityPolicyManager
,CookieManagementFilter
,DataLocalizationManager
,DBEventLogManager
,DocumentEditorManager
,FileProcessorManager
,HierarchicalWorkspacesManager
,IconManager
,ImageEditorManager
,IncomingMailListener
,JNewsManager
,JPortalManager
,JWTAuthenticationHandler
,JwtManager
,KeyStoreManager
,MailFetcher
,MediaQueryFilter
,MemberPreferenceManager
,MemberSidebarManager
,MemberStatusManager
,MentionManager
,PluginDataInfosManager
,PublicationFollowerManager
,PublicLinkManager
,PushNotificationManager
,QuotaManager
,ReaderTrackerManager
,RecentHistoryManager
,RecommendationManager
,ReplicaMessageManager
,ResourceHelper
,ServiceManager
,ShortcutManager
,ThumbnailPolicyManager
,TopbarManager
,TrashManager
,UILinkItemsManager
,UnifiedInsertManager
,VoteManager
,WeakLockManager
,WebPageManager
,WysiwygManager
public interface JPropertiesListener
Interface to implement to be notified of JCMS property modification.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
REVISION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
propertiesChange(JProperties properties)
Invoked after properties have been modified in JCMS and save on disk.
-
-
-
Field Detail
-
REVISION
static final java.lang.String REVISION
- See Also:
- Constant Field Values
-
-
Method Detail
-
propertiesChange
void propertiesChange(JProperties properties)
Invoked after properties have been modified in JCMS and save on disk.You cannot alter the value received in parameters.
Note that properties parameter may be null, a limited set of site properties, or all site properties.
To check that a property has been modified, reload the "current" property instead using
channel.getProperties
orchannel.getProperty
.- Parameters:
properties
- the properties which have been submitted to change
-
-