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

org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.ContainerLaunchContextInfo Maven / Gradle / Ivy

/**
 * 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.hadoop.yarn.server.resourcemanager.webapp.dao;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

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

import org.apache.hadoop.yarn.api.records.ApplicationAccessType;

/**
 * Simple class to allow users to send information required to create a
 * ContainerLaunchContext which can then be used as part of the
 * ApplicationSubmissionContext
 * 
 */
@XmlRootElement(name = "container-launch-context-info")
@XmlAccessorType(XmlAccessType.FIELD)
public class ContainerLaunchContextInfo {

  @XmlElementWrapper(name = "local-resources")
  HashMap local_resources;
  HashMap environment;

  @XmlElementWrapper(name = "commands")
  @XmlElement(name = "command", type = String.class)
  List commands;

  @XmlElementWrapper(name = "service-data")
  HashMap servicedata;

  @XmlElement(name = "credentials")
  CredentialsInfo credentials;

  @XmlElementWrapper(name = "application-acls")
  HashMap acls;

  public ContainerLaunchContextInfo() {
    local_resources = new HashMap();
    environment = new HashMap();
    commands = new ArrayList();
    servicedata = new HashMap();
    credentials = new CredentialsInfo();
    acls = new HashMap();
  }

  public Map getResources() {
    return local_resources;
  }

  public Map getEnvironment() {
    return environment;
  }

  public List getCommands() {
    return commands;
  }

  public Map getAuxillaryServiceData() {
    return servicedata;
  }

  public CredentialsInfo getCredentials() {
    return credentials;
  }

  public Map getAcls() {
    return acls;
  }

  public void setResources(HashMap resources) {
    this.local_resources = resources;
  }

  public void setEnvironment(HashMap environment) {
    this.environment = environment;
  }

  public void setCommands(List commands) {
    this.commands = commands;
  }

  public void setAuxillaryServiceData(HashMap serviceData) {
    this.servicedata = serviceData;
  }

  public void setCredentials(CredentialsInfo credentials) {
    this.credentials = credentials;
  }

  public void setAcls(HashMap acls) {
    this.acls = acls;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy