com.gooddata.project.ProjectEnvironment Maven / Gradle / Ivy
/*
* Copyright (C) 2004-2017, GoodData(R) Corporation. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
package com.gooddata.project;
/**
* Optional property for project create, the property is ignored during project update.
* Default value is {@link #PRODUCTION} which is also environment for all currently existing projects.
* Preffer {@link com.gooddata.project.Environment} if possible.
*/
public enum ProjectEnvironment {
/** Default value, projects are backed-up and archived. */
PRODUCTION,
/** no meaning yet and behavior is the same as for {@link #PRODUCTION} projects*/
DEVELOPMENT,
/** 'TESTING' projects are not backed-up and archived. */
TESTING
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy