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

org.ow2.jonas.jpaas.manager.api.ApplicationVersion Maven / Gradle / Ivy

The newest version!
/**
 * JPaaS
 * Copyright 2012 Bull S.A.S.
 *
 * Licensed 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.
 * 
 * $Id:$
 */

package org.ow2.jonas.jpaas.manager.api;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;

public class ApplicationVersion implements Serializable{

  private static final long serialVersionUID = 5023584890222485816L;
  private String appId;
  private String versionId;
  private String versionLabel;
  private List requirements = new ArrayList() ;
  private List capabilities= new ArrayList();
  private List sortedDeployablesList =  new ArrayList ();;
  private List listApplicationVersionInstance = new  ArrayList();

  public String getAppId() {
    return appId;
  }

  public void setAppId(String appId) {
    this.appId = appId;
  }

  public String getVersionId() {
    return versionId;
  }

  public void setVersionId(String versionId) {
    this.versionId = versionId;
  }

  public String getVersionLabel() {
    return versionLabel;
  }

  public void setVersionLabel(String versionLabel) {
    this.versionLabel = versionLabel;
  }

  public List getRequirements() {
	return requirements;
}

  public void setRequirements(List requirements) {
	this.requirements = requirements;
}

  public List getCapabilities() {
	return capabilities;
}

  public void setCapabilities(List capabilities) {
	this.capabilities = capabilities;
}

  public List getSortedDeployablesList() {
    return sortedDeployablesList;
  }

  public void setSortedDeployablesList(List sortedDeployablesList) {
    this.sortedDeployablesList = sortedDeployablesList;
  }

  public List getListApplicationVersionInstance() {
    return listApplicationVersionInstance;
  }

  public void setListApplicationVersionInstance(List listApplicationVersionInstance) {
    this.listApplicationVersionInstance = listApplicationVersionInstance;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy