From bd5f0cb2d263d20e0e902c021657a746cfcc39a3 Mon Sep 17 00:00:00 2001 From: gpawel <gpawel> Date: Wed, 6 Jul 2011 09:35:19 +0000 Subject: [PATCH] possibility to define label when registering property type via AdminConsole SVN: 22010 --- .../client/console/RegisterPropertyType.java | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/console/RegisterPropertyType.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/console/RegisterPropertyType.java index 51cf37cc249..ef1fac7d426 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/console/RegisterPropertyType.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/console/RegisterPropertyType.java @@ -35,8 +35,7 @@ public class RegisterPropertyType implements ICommand private final static String TYPE = "type"; - @SuppressWarnings("unused") - private static final String LABEL = ", label = "; + private static final String LABEL = "label"; private static boolean validated(List<String> tokens) { @@ -77,6 +76,23 @@ public class RegisterPropertyType implements ICommand propertyType.setDataType(new DataType(dataTypeCode)); } + if (tokens.size() > 5) + { + String token = tokens.get(5); + int indexOfEqualSign = token.indexOf('='); + if (indexOfEqualSign < 0) + { + throw new IllegalArgumentException("Missing '=': " + token); + } + String key = token.substring(0, indexOfEqualSign); + String value = token.substring(indexOfEqualSign + 1); + + if (LABEL.equalsIgnoreCase(key)) + { + propertyType.setLabel(value); + } + } + server.registerPropertyType(sessionToken, propertyType); } } -- GitLab