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

com.twingly.search.domain.BlogStream Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.twingly.search.domain;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * The type Blog stream.
 */
@XmlRootElement(name = "blogstream", namespace = "http://www.twingly.com")
public class BlogStream {
    @XmlElement(name = "operationResult")
    private OperationResult operationResult;

    /**
     * Gets operation result.
     *
     * @return the operation result
     */
    public OperationResult getOperationResult() {
        return operationResult;
    }

    /**
     * Sets operation result.
     *
     * @param operationResult the operation result
     */
    public void setOperationResult(OperationResult operationResult) {
        this.operationResult = operationResult;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy