org.eclipse.orion.server.cf.objects.OrgWithSpaces.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.orion.server.cf.objects.OrgWithSpaces.java

Source

/*******************************************************************************
 * Copyright (c) 2014 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.orion.server.cf.objects;

import java.util.Iterator;
import java.util.List;
import org.eclipse.orion.server.cf.CFProtocolConstants;
import org.eclipse.orion.server.core.resources.Property;
import org.eclipse.orion.server.core.resources.annotations.PropertyDescription;
import org.eclipse.orion.server.core.resources.annotations.ResourceDescription;
import org.json.*;

@ResourceDescription(type = Org.TYPE)
public class OrgWithSpaces extends Org {

    private List<Space> spaces;

    public OrgWithSpaces() {
        super();
    }

    public List<Space> getSpaces() {
        return spaces;
    }

    @PropertyDescription(name = CFProtocolConstants.KEY_SPACES)
    private JSONArray getSpacesJSONArray() {
        try {
            JSONArray spacesJSONArray = new JSONArray();
            for (Iterator<Space> iterator = spaces.iterator(); iterator.hasNext();) {
                spacesJSONArray.put(iterator.next().toJSON());
            }
            return spacesJSONArray;
        } catch (JSONException e) {
            return null;
        }
    }

    public void setSpaces(List<Space> spaces) {
        this.spaces = spaces;
    }

    @Override
    public JSONObject toJSON() throws JSONException {
        DEFAULT_RESOURCE_SHAPE.addProperty(new Property(CFProtocolConstants.KEY_SPACES));
        return jsonSerializer.serialize(this, DEFAULT_RESOURCE_SHAPE);
    }

}