Package org.woped.config

Examples of org.woped.config.Registration


      if (getConfDocument().getConfiguration().getRegistration() != null) {
        int n = getConfDocument().getConfiguration().getRegistration().getCounter();
        getConfDocument().getConfiguration().getRegistration().setCounter(n+1);
      }
      else {
        Registration reg = Registration.Factory.newInstance();
        reg.setEmailaddress("");
        reg.setDisabled(false);
        reg.setCounter(0);
        getConfDocument().getConfiguration().setRegistration(reg);     
      }
       
      getConfDocument().save(file, xmlOptions);
      LoggerManager.info(Constants.CONFIG_LOGGER,
View Full Code Here

TOP

Related Classes of org.woped.config.Registration

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.