1 23 24 29 30 31 package com.sun.cli.jmx.support; 32 33 public interface AliasMgrMBean 34 { 35 41 public void 42 createAlias( String aliasName, String objectName ) throws Exception ; 43 44 50 public String  51 resolveAlias( String aliasName ) throws Exception ; 52 53 58 public void 59 deleteAlias( String aliasName ) throws Exception ; 60 61 66 public String [] 67 listAliases( boolean showValues ) throws Exception ; 68 69 74 public String [] 75 getAliases() throws Exception ; 76 } | Popular Tags |