Package com.dbxml.util

Examples of com.dbxml.util.ConfigurationCallback


      if ( trg == null )
         throw new TriggerException(FaultCodes.TRG_TRIGGER_NOT_FOUND, "Trigger '"+name+"' does not exist");

      unregister(name);
      config.processChildren(TRIGGER,
         new ConfigurationCallback() {
            public void process(Configuration cfg) {
               try {
                  if ( cfg.getAttribute(NAME).equals(name) )
                     cfg.delete();
               }
View Full Code Here


   }

   public void setConfig(Configuration config) {
      this.config = config;
      config.processChildren(SERVICE,
         new ConfigurationCallback() {
            public void process(Configuration cfg) {
               String className = cfg.getAttribute(CLASS);
               try {
                  Object obj = ClassResolver.get(className).newInstance();
                  if ( obj instanceof Service ) {
View Full Code Here

   private static final String CLASS = "class";

   public void setConfig(Configuration config) throws dbXMLException {
      super.setConfig(config);

      config.processChildren(PAGEFILTER, new ConfigurationCallback() {
         public void process(Configuration cfg) {
            String className = cfg.getAttribute(CLASS);
            try {
               PageFilter pageFilter = (PageFilter)ClassResolver.get(className).newInstance();
               if ( pageFilter instanceof Configurable )
View Full Code Here

      final Map helpMap = new HashMap();
      final List catList = new ArrayList();

      setProperties(cfg);

      cfg.processChildren(CATEGORY, new ConfigurationCallback() {
         public void process(Configuration cc) {
            String name = cc.getAttribute(NAME);
            lastCatName[0] = name;
            String desc = cc.getAttribute(DESCRIPTION);
            catList.add(StringUtilities.leftJustify(name, 15) + " " + desc);

            final StringBuffer sbHelp = new StringBuffer();
            sbHelp.append(cc.getAttribute(DESCRIPTION) + ":\n");
            cc.processChildren(COMMAND, new ConfigurationCallback() {
               public void process(Configuration c) {
                  try {
                     String cName = c.getAttribute(CLASS);
                     Class cl = Class.forName(cName);
                     Command cmd = (Command)cl.newInstance();
View Full Code Here

      // Add the hardcoded help Command
      commands.put("HELP", new CommandInfo("HELP", new Help(helpMap), "", sbHelp.toString()));
   }

   private void setProperties(Configuration cfg) {
      cfg.processChildren(SET, new ConfigurationCallback() {
         public void process(Configuration cc) {
            String name = cc.getAttribute(NAME);
            String value = cc.getAttribute(VALUE);
            try {
               setProperty(name, value);
View Full Code Here

   }

   public void setConfig(Configuration config) throws dbXMLException {
      super.setConfig(config);
      config.processChildren(RESOLVER,
         new ConfigurationCallback() {
            public void process(Configuration cfg) {
               String className = cfg.getAttribute(CLASS);
               try {
                  QueryResolver res = (QueryResolver)ClassResolver.get(className).newInstance();
                  res.setConfig(cfg);
View Full Code Here

      this.config = config;

      Configuration colConfig = config.getChild(COLLECTIONS);
      if ( colConfig != null ) {
         colConfig.processChildren(COLLECTION,
            new ConfigurationCallback() {
               public void process(Configuration cfg) throws dbXMLException {
                  Collection col = new Collection((Collection)CollectionManager.this);
                  col.setConfig(cfg);
                  collections.put(col.getName(), col);
               }
View Full Code Here

         boolean dropped = collection.drop();
         if ( dropped ) {
            collections.remove(name);
            Configuration colConfig = config.getChild(COLLECTIONS);
            colConfig.processChildren(COLLECTION,
               new ConfigurationCallback() {
                  public void process(Configuration cfg) {
                     try {
                        if ( cfg.getAttribute(NAME).equals(name) )
                           cfg.delete();
                     }
View Full Code Here

TOP

Related Classes of com.dbxml.util.ConfigurationCallback

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.