com.openmarket.basic.event
Interface AssetEventListener

All Superinterfaces:
Listener<AssetEvent>
All Known Implementing Classes:
AbstractAssetEventListener

public interface AssetEventListener
extends Listener<AssetEvent>

Event Listener interface for Asset subsystem.


Method Summary
 void assetAdded(AssetId id)
          Indicates that an Asset of a given id was added to the system.
 void assetAdded(AssetId id, boolean isPull)
          Indicates that an Asset of a given id was added to the system.
 void assetDeleted(AssetId id)
          Indicates that an Asset of a given id was deleted.
 void assetDeleted(AssetId id, boolean isPull)
          Indicates that an Asset of a given id was deleted.
 void assetUndoCheckOut(AssetId id)
          Indicates that undo checkout was called on an Asset of a given.
 void assetUndoCheckOut(AssetId id, boolean isPull)
          Indicates that undo checkout was called on an Asset of a given.
 void assetUpdated(AssetId id)
          Indicates that an Asset of a given id was updated.
 void assetUpdated(AssetId id, boolean isPull)
          Indicates that an Asset of a given id was updated.
 void init(ICS ics)
           
 
Methods inherited from interface com.fatwire.cs.core.event.Listener
onEvent
 

Method Detail

init

void init(ICS ics)

assetAdded

void assetAdded(AssetId id)
Indicates that an Asset of a given id was added to the system.

Parameters:
id - Asset id added

assetAdded

void assetAdded(AssetId id,
                boolean isPull)
Indicates that an Asset of a given id was added to the system.

Parameters:
id - Asset id added

assetUpdated

void assetUpdated(AssetId id)
Indicates that an Asset of a given id was updated.

Parameters:
id - Asset id updated

assetUpdated

void assetUpdated(AssetId id,
                  boolean isPull)
Indicates that an Asset of a given id was updated.

Parameters:
id - Asset id updated

assetDeleted

void assetDeleted(AssetId id)
Indicates that an Asset of a given id was deleted.

Parameters:
id - Asset id deleted

assetDeleted

void assetDeleted(AssetId id,
                  boolean isPull)
Indicates that an Asset of a given id was deleted.

Parameters:
id - Asset id deleted

assetUndoCheckOut

void assetUndoCheckOut(AssetId id)
Indicates that undo checkout was called on an Asset of a given.

Parameters:
id - Asset id deleted

assetUndoCheckOut

void assetUndoCheckOut(AssetId id,
                       boolean isPull)
Indicates that undo checkout was called on an Asset of a given.

Parameters:
id - Asset id deleted


Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.