feat: created configurator package with configurators

Signed-off-by: xbaran4 <pbaran@redhat.com>
pull/117/head
xbaran4 2021-09-24 09:16:57 +02:00
parent 8aa275101a
commit 39363da6ef
3 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package org.eclipse.che.workspace.infrastructure.kubernetes.namespace.configurator;
public interface NamespaceConfigurator{
}

View File

@ -0,0 +1,4 @@
package org.eclipse.che.workspace.infrastructure.kubernetes.namespace.configurator;
public class UserPreferencesConfigurator implements NamespaceConfigurator {
}

View File

@ -0,0 +1,4 @@
package org.eclipse.che.workspace.infrastructure.kubernetes.namespace.configurator;
public class UserProfileConfigurator implements NamespaceConfigurator{
}