Package org.structr.web.error

Source Code of org.structr.web.error.DynamicValidationError

/**
* Copyright (C) 2010-2014 Morgner UG (haftungsbeschränkt)
*
* This file is part of Structr <http://structr.org>.
*
* Structr is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Structr is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Structr.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.structr.web.error;

import com.google.gson.JsonElement;
import com.google.gson.JsonNull;
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
import java.util.Map;
import java.util.Map.Entry;
import org.structr.core.property.PropertyKey;
import org.structr.common.error.SemanticErrorToken;

/**
*
* @author Axel Morgner
*/
public class DynamicValidationError extends SemanticErrorToken {

  private Map<String, Object> attributes = null;

  public DynamicValidationError(PropertyKey key, Map<String, Object> attributes) {
    super(key);
    this.attributes = attributes;
  }

  @Override
  public JsonElement getContent() {

    JsonObject obj = new JsonObject();
    JsonObject vals = new JsonObject();

    for (Entry<String, Object> entry : attributes.entrySet()) {

      String key = entry.getKey();
      Object value = entry.getValue();
     
      if (value == null) {
        vals.add(key, new JsonNull());
      } else {
        vals.add(key, new JsonPrimitive(value.toString()));
      }
    }

    obj.add(getErrorToken(), vals);

    return obj;
  }

  @Override
  public String getErrorToken() {
    return "validation_error";
  }
}
TOP

Related Classes of org.structr.web.error.DynamicValidationError

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.