Package com.wowza.wms.pushpublish.model
Interface IPushPublishProfileUtil
- All Known Implementing Classes:
PushPublishHTTPCupertinoUtil
public interface IPushPublishProfileUtil
The Interface IPushPublishProfileUtil
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionboolean
Is this a parent profile?void
onDeleteEntry
(Map<String, String> entry) Allows processing of a map file entry prior to being deleted.void
onReadEntry
(Map<String, String> entry) Allows modification of a map file entry after prior to being returned through a Push Publishing api.void
Allows modification of a map file entry prior to being written to the map file.void
setApplicationInstance
(IApplicationInstance appInstance) Set the application instance associated with this Util classvoid
setApplicationName
(String appName) Set the application name associated with this Util classvoid
Set the VHost associated with this Util classboolean
validateEntry
(Map<String, String> entry) Allows validation of a map file entry.
-
Field Details
-
PROPERTY_LOG_DEBUG_MANIFEST
- See Also:
-
-
Method Details
-
setVHost
Set the VHost associated with this Util class- Parameters:
vhost
-
-
setApplicationName
Set the application name associated with this Util class- Parameters:
appName
-
-
setApplicationInstance
Set the application instance associated with this Util class- Parameters:
appInstance
-
-
onWriteEntry
Allows modification of a map file entry prior to being written to the map file.- Parameters:
oldEntry
- the old version of the entry (null for new entries)newEntry
- the new version of the entry to be written
-
onReadEntry
Allows modification of a map file entry after prior to being returned through a Push Publishing api.- Parameters:
entry
- the map file entry as read from disk
-
onDeleteEntry
Allows processing of a map file entry prior to being deleted.- Parameters:
entry
- the map file entry as read from disk
-
validateEntry
Allows validation of a map file entry.- Parameters:
entry
- the map file entry as read from disk- Returns:
- true if entry is valid
-
isParent
Is this a parent profile?- Parameters:
entry
- the map file entry as read from disk- Returns:
- true if entry is a parent profile, false if child profile or standalone
-