Package org.apache.wink.example.qadefect.resources

Source Code of org.apache.wink.example.qadefect.resources.DefectsAsset

/*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF 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 org.apache.wink.example.qadefect.resources;

import java.io.IOException;
import java.util.Collection;
import java.util.Date;
import java.util.LinkedList;
import java.util.List;

import javax.ws.rs.Consumes;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.UriInfo;
import javax.ws.rs.ext.Providers;

import org.apache.wink.common.annotations.Asset;
import org.apache.wink.common.model.csv.CsvTable;
import org.apache.wink.common.model.synd.SyndEntry;
import org.apache.wink.common.model.synd.SyndFeed;
import org.apache.wink.common.model.synd.SyndPerson;
import org.apache.wink.common.model.synd.SyndText;
import org.apache.wink.example.qadefect.legacy.DefectBean;
import org.apache.wink.server.utils.LinkBuilders;

/**
* Defects resource (based on collection resource)
*/
@Asset
public class DefectsAsset {

    private List<DefectBean> defects;

    /**
     * Constructor. Metadata and data objects are empty.
     */
    public DefectsAsset() {
        this.defects = new LinkedList<DefectBean>();
    }

    /**
     * Constructor. Creates resource metadata from defect bean collection. This
     * constructor will be used when we want HTML representation for the
     * resource.
     *
     * @param collection defect bean collection
     */
    public DefectsAsset(Collection<DefectBean> defects) {
        this();
        this.defects.addAll(defects);
    }

    public List<DefectBean> getDefects() {
        return defects;
    }

    @Produces
    public SyndFeed getSyndFeed(@Context Providers providers,
                                @Context LinkBuilders linkProcessor,
                                @Context UriInfo uriInfo) throws IOException {
        SyndFeed synd = new SyndFeed();
        synd.setId("urn:com:hp:qadefects:defects");
        synd.setTitle(new SyndText("Defects"));
        synd.addAuthor(new SyndPerson("admin"));
        synd.setUpdated(new Date());

        // set the entries
        for (DefectBean defect : defects) {
            DefectAsset defectAsset = new DefectAsset(defect, true);
            SyndEntry entry = defectAsset.getSyndEntry(providers, uriInfo, linkProcessor);
            synd.addEntry(entry);
        }

        synd.setBase(uriInfo.getAbsolutePath().toString());
        linkProcessor.createSystemLinksBuilder().build(synd.getLinks());
        return synd;
    }

    @Produces
    public CsvTable getCsv() {
        CsvTable cvs = new CsvTable("Id", "Name", "Severity", "Status", "Author");
        for (DefectBean defectBean : defects) {
            cvs.addRow(defectBean.getId(),
                       defectBean.getName(),
                       defectBean.getSeverity(),
                       defectBean.getStatus(),
                       defectBean.getAuthor());
        }
        return cvs;
    }

    @Consumes
    public void setCsv(CsvTable csv) {
        for (String[] row : csv.getRows()) {
            if (row.length != 5) {
                continue;
            }
            // skip the header if it exists
            if (row[0].equals("Id") && row[1].equals("Name")
                && row[2].equals("Severity")
                && row[3].equals("Status")
                && row[4].equals("Author")) {
                continue;
            }
            DefectBean defect = new DefectBean();
            defect.setId(row[0]);
            defect.setName(row[1]);
            defect.setSeverity(row[2]);
            defect.setStatus(row[3]);
            defect.setAuthor(row[4]);
            defects.add(defect);
        }
    }
}
TOP

Related Classes of org.apache.wink.example.qadefect.resources.DefectsAsset

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.