diff --git a/core/che-core-api-model/pom.xml b/core/che-core-api-model/pom.xml index 3a28616ee8..7fd497463c 100644 --- a/core/che-core-api-model/pom.xml +++ b/core/che-core-api-model/pom.xml @@ -22,6 +22,10 @@ jar Che Core :: API :: Model + + com.google.guava + guava + org.eclipse.che.core che-core-commons-annotations diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineConfig.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineConfig.java index f2688cd687..d43da2a413 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineConfig.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineConfig.java @@ -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'. + * + *

This method is in beta. And can be removed in next versions. */ + // todo remove after resolving CHE-995 + @Beta String getArchitecture(); }