/******************************************************************************* * 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.net.URI; import java.net.URISyntaxException; import org.eclipse.orion.server.cf.CFProtocolConstants; import org.eclipse.orion.server.cf.manifest.v2.InvalidAccessException; import org.eclipse.orion.server.cf.manifest.v2.ManifestParseTree; import org.eclipse.orion.server.core.resources.Property; import org.eclipse.orion.server.core.resources.ResourceShape; import org.eclipse.orion.server.core.resources.annotations.PropertyDescription; import org.eclipse.orion.server.core.resources.annotations.ResourceDescription; import org.json.JSONException; import org.json.JSONObject; @ResourceDescription(type = Manifest.TYPE) public class Manifest extends CFObject { public static final String RESOURCE = "manifests"; //$NON-NLS-1$ public static final String TYPE = "Manifest"; //$NON-NLS-1$ private ManifestParseTree manifest; protected static final ResourceShape DEFAULT_RESOURCE_SHAPE = new ResourceShape(); { Property[] defaultProperties = new Property[] { // new Property(CFProtocolConstants.KEY_CONTENTS)}; DEFAULT_RESOURCE_SHAPE.setProperties(defaultProperties); } public Manifest(ManifestParseTree manifest) { this.manifest = manifest; } @PropertyDescription(name = CFProtocolConstants.KEY_CONTENTS) protected JSONObject getContents() throws JSONException, InvalidAccessException { return manifest.toJSON(); } @Override protected URI getLocation() throws URISyntaxException { return null; } @Override public JSONObject toJSON() throws JSONException { return jsonSerializer.serialize(this, DEFAULT_RESOURCE_SHAPE); } }