All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emc.storageos.model.search.SearchResultResourceRep Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2008-2013 EMC Corporation
 * All Rights Reserved
 */
package com.emc.storageos.model.search;

import java.net.URI;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAccessType;

import com.emc.storageos.model.RelatedResourceRep;
import com.emc.storageos.model.RestLinkRep;

@XmlAccessorType(XmlAccessType.PROPERTY)
public class SearchResultResourceRep extends RelatedResourceRep {

    public String match;

    public SearchResultResourceRep() {
    }

    public SearchResultResourceRep(URI id, RestLinkRep selfLink, String match) {
        super(id, selfLink);
        this.match = match;
    }

    /**
     * The name or tag of the resource matching the search parameters
     * 
     * @valid none
     */
    @XmlElement(name = "match")
    public String getMatch() {
        return match;
    }

    public void setMatch(String match) {
        this.match = match;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy