1 23 24 29 30 package com.sun.appserv.management.deploy; 31 32 import java.util.Map ; 33 import java.util.Locale ; 34 35 import javax.management.openmbean.CompositeData ; 36 37 import com.sun.appserv.management.base.MapCapable; 38 39 40 41 48 public interface DeploymentProgress extends MapCapable 49 { 50 53 public final static String DEPLOYMENT_PROGRESS_CLASS_NAME = 54 "com.sun.appserv.management.deploy.DeploymentProgress"; 55 56 57 60 public static final String PROGRESS_PERCENT_KEY = "ProgressPercent"; 61 62 65 public static final String DESCRIPTION_KEY = "Description"; 66 67 71 public static final String LOCALIZED_DESCRIPTION_KEY_BASE = "LocalizedDescription"; 72 73 74 81 public byte getProgressPercent(); 82 83 87 public String getDescription(); 88 89 93 public String getLocalizedDescription(Locale locale); 94 } 95 | Popular Tags |