1 23 24 29 30 31 package com.sun.enterprise.management.config; 32 33 34 37 38 public final class NodeAgentConfigFactory extends ConfigFactory 39 { 40 public 41 NodeAgentConfigFactory( final ConfigFactoryCallback callbacks) 42 { 43 super( callbacks ); 44 } 45 46 public void 47 create( final String name ) 48 { 49 throw new UnsupportedOperationException ( "NodeAgentConfigFactory.create" ); 50 } 51 52 protected void 53 removeByName( final String name ) 54 { 55 throw new UnsupportedOperationException ( "NodeAgentConfigFactory.removeByName" ); 56 } 57 58 } 59 60 | Popular Tags |