2 * Copyright (C) 2013 Tobias Brunner
3 * Copyright (C) 2012 Christoph Buehler
4 * Copyright (C) 2012 Patrick Loetscher
5 * Hochschule fuer Technik Rapperswil
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 package org.strongswan.android.logic.imc.collectors;
20 import org.strongswan.android.logic.imc.attributes.Attribute;
21 import org.strongswan.android.logic.imc.attributes.StringVersionAttribute;
23 public class StringVersionCollector implements Collector
26 public Attribute getMeasurement()
28 StringVersionAttribute attribute = new StringVersionAttribute();
29 attribute.setProductVersionNumber(android.os.Build.VERSION.RELEASE);
30 attribute.setInternalBuildNumber(android.os.Build.DISPLAY);