001 /*             
002 * ===========================================================================================
003 * = COPYRIGHT                    
004 *          PAX Computer Technology(Shenzhen) CO., LTD PROPRIETARY INFORMATION          
005 *   This software is supplied under the terms of a license agreement or nondisclosure  
006 *   agreement with PAX Computer Technology(Shenzhen) CO., LTD and may not be copied or 
007 *   disclosed except in accordance with the terms in that agreement.                   
008 *     Copyright (C) 2017-? PAX Computer Technology(Shenzhen) CO., LTD All rights reserved.
009 * Description: // Detail description about the function of this module,                
010 *             // interfaces with the other modules, and dependencies.          
011 * Revision History:            
012 * Date                  Author                 Action
013 * 2017-09-05            uni.w                                  Create
014 * ===========================================================================================
015 */
016 
017package com.pax.dal.pedkeyisolation;
018
019@Deprecated
020public abstract class ANepSlotAllocator implements ISlotAllocator{
021
022    public final String KEY_PACKAGE_NAME = "KEY_PACKAGE_NAME";
023    public final String KEY_SESSION_ID = "KEY_SESSION_ID";
024    public final String KEY_TYPE = "KEY_TYPE";
025    public final String KEY_SUB_TYPE = "KEY_SUB_TYPE";
026    public final String KEY_LOGICAL_ID = "KEY_LOGICAL_ID";
027    public final String KEY_PHYSICAL_ID = "KEY_PHYSICAL_ID";
028    public final String KEY_NEW_OWNER_NAME = "KEY_NEW_OWNER_NAME";
029    
030    public abstract ISlotAllocatorProvider getProvider();
031    
032}