CHE-995: mark architecture field as beta

Signed-off-by: Alexander Garagatyi <agaragatyi@codenvy.com>
6.19.x
Alexander Garagatyi 2016-04-14 15:30:16 +03:00
parent f5c5ed64c6
commit 600a185cd2
2 changed files with 10 additions and 0 deletions

View File

@ -22,6 +22,10 @@
<packaging>jar</packaging>
<name>Che Core :: API :: Model</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-commons-annotations</artifactId>

View File

@ -10,6 +10,8 @@
*******************************************************************************/
package org.eclipse.che.api.core.model.machine;
import com.google.common.annotations.Beta;
import org.eclipse.che.commons.annotation.Nullable;
import java.util.List;
@ -60,6 +62,10 @@ public interface MachineConfig {
/**
* Architecture of target machine. Default is 'linux_amd64'.
*
* <p/>This method is in beta. And can be removed in next versions.
*/
// todo remove after resolving CHE-995
@Beta
String getArchitecture();
}