1 /* 2 * Copyright 2001-2003 The eXo platform SARL All rights reserved. 3 * Please look at license.txt in info directory for more license detail. 4 */ 5 6 package org.exoplatform.services.portletcontainer.pci; 7 8 import java.io.Serializable; 9 10 /** 11 * Created by the Exo Development team. 12 * Author : Mestrallet Benjamin 13 * benjamin.mestrallet@exoplatform.com 14 */ 15 public interface WindowID extends Serializable{ 16 17 public String getOwner(); 18 19 public String getPortletApplicationName(); 20 21 public String getPortletName(); 22 23 public String getUniqueID(); 24 25 public String generateKey(); 26 27 } 28