Package de.iritgo.aktera.base.database

Source Code of de.iritgo.aktera.base.database.PromptUpdateDatabase

/**
* This file is part of the Iritgo/Aktera Framework.
*
* Copyright (C) 2005-2011 Iritgo Technologies.
* Copyright (C) 2003-2005 BueroByte GbR.
*
* Iritgo licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package de.iritgo.aktera.base.database;


import de.iritgo.aktera.base.server.*;
import de.iritgo.aktera.model.Command;
import de.iritgo.aktera.model.ModelException;
import de.iritgo.aktera.model.ModelRequest;
import de.iritgo.aktera.model.ModelResponse;
import de.iritgo.aktera.model.StandardLogEnabledModel;


/**
* @avalon.component
* @avalon.service type="de.iritgo.aktera.model.Model"
* @x-avalon.info name="aktera.database.update-prompt"
* @model.model name="aktera.database.update-prompt" id="aktera.database.update-prompt" logger="aktera"
* @model.attribute name="forward" value="aktera.database.update-prompt"
*/
public class PromptUpdateDatabase extends StandardLogEnabledModel
{
  /**
   * Execute the model.
   *
   * @param req The model request.
   * @throws ModelException In case of a business failure.
   */
  public ModelResponse execute(ModelRequest req) throws ModelException
  {
    log.info("*** Unblock firewall for database update...");
    SystemFirewall.disable();

    ModelResponse res = req.createResponse();

    Command cmd = res.createCommand("aktera.database.update");

    cmd.setName("update");
    cmd.setLabel("$updateDatabase");
    res.add(cmd);

    return res;
  }
}
TOP

Related Classes of de.iritgo.aktera.base.database.PromptUpdateDatabase

TOP
Copyright © 2018 www.massapi.com. 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.