package us.codecraft.webmagic.model;
import us.codecraft.webmagic.model.annotation.Experimental;
/**
* Interface to be implemented by page mode.
* Can be used to identify a page model, or be used as name of file storing the object.
* @author code4crafter@gmail.com
* @since 0.2.0
*/
@Experimental
public interface HasKey {
/**
*
*
* @return key
*/
public String key();
}