com.intuit.tank.reporting.api.TPSReportingPackage.java Source code

Java tutorial

Introduction

Here is the source code for com.intuit.tank.reporting.api.TPSReportingPackage.java

Source

/**
 * Copyright 2011 Intuit Inc. All Rights Reserved
 */
package com.intuit.tank.reporting.api;

/*
 * #%L
 * Cloud Rest API
 * %%
 * Copyright (C) 2011 - 2015 Intuit Inc.
 * %%
 * 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
 * #L%
 */

import java.io.Serializable;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

import org.apache.commons.lang.builder.ToStringBuilder;

/**
 * TPSReportingPackage
 * 
 * @author dangleton
 * 
 */
@XmlRootElement(name = "TPSReportingPackage", namespace = Namespace.NAMESPACE_V1)
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TPSReportingPackageType", namespace = Namespace.NAMESPACE_V1, propOrder = { "jobId", "instanceId",
        "container" })
public class TPSReportingPackage implements Serializable {

    private static final long serialVersionUID = 1L;

    @XmlElement(name = "jobId", namespace = Namespace.NAMESPACE_V1, required = true, nillable = false)
    private String jobId;

    @XmlElement(name = "instanceId", namespace = Namespace.NAMESPACE_V1, required = true, nillable = false)
    private String instanceId;

    @XmlElement(name = "container", namespace = Namespace.NAMESPACE_V1, required = true, nillable = false)
    private TPSInfoContainer container;

    /**
     * @FrameworkUseOnly
     */
    public TPSReportingPackage() {
    }

    public TPSReportingPackage(String jobId, String instanceId, TPSInfoContainer container) {
        super();
        this.jobId = jobId;
        this.instanceId = instanceId;
        this.container = container;
    }

    /**
     * @return the jobId
     */
    public String getJobId() {
        return jobId;
    }

    /**
     * @return the instanceId
     */
    public String getInstanceId() {
        return instanceId;
    }

    /**
     * @return the container
     */
    public TPSInfoContainer getContainer() {
        return container;
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this).append("jobId", jobId).append("instanceId", instanceId).toString();
    }

}