blob: 88529dd9bec26176930ec4f77487dafcc0561db8 [file] [log] [blame]
// 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.
using System.Runtime.Serialization;
using Org.Apache.REEF.Utilities.Attributes;
namespace Org.Apache.REEF.Client.Avro
{
/// <summary>
/// Used to serialize and deserialize Avro record org.apache.reef.reef.bridge.client.avro.AvroJobSubmissionParameters.
/// This is a (mostly) auto-generated class. For instructions on how to regenerate, please view the README.md in the same folder.
/// </summary>
[Private]
[DataContract(Namespace = "org.apache.reef.reef.bridge.client.avro")]
public sealed class AvroJobSubmissionParameters
{
private const string JsonSchema = @"{""type"":""record"",""name"":""org.apache.reef.reef.bridge.client.avro.AvroJobSubmissionParameters"",""doc"":""General cross-language job submission parameters shared by all runtimes"",""fields"":[{""name"":""jobId"",""type"":""string""},{""name"":""jobSubmissionFolder"",""type"":""string""}]}";
/// <summary>
/// Gets the schema.
/// </summary>
public static string Schema
{
get
{
return JsonSchema;
}
}
/// <summary>
/// Gets or sets the jobId field.
/// </summary>
[DataMember]
public string jobId { get; set; }
/// <summary>
/// Gets or sets the jobSubmissionFolder field.
/// </summary>
[DataMember]
public string jobSubmissionFolder { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="AvroJobSubmissionParameters"/> class.
/// </summary>
public AvroJobSubmissionParameters()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="AvroJobSubmissionParameters"/> class.
/// </summary>
/// <param name="jobId">The jobId.</param>
/// <param name="jobSubmissionFolder">The jobSubmissionFolder.</param>
public AvroJobSubmissionParameters(string jobId, string jobSubmissionFolder)
{
this.jobId = jobId;
this.jobSubmissionFolder = jobSubmissionFolder;
}
}
}