From 4eec7912a1c973b44b314f0a805cb19a1f63a5a3 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 25 Apr 2013 19:07:34 +0200 Subject: [PATCH] android: Interfaces for measurement collectors and attributes added --- .../logic/imc/attributes/Attribute.java | 28 +++++++++++++++++ .../logic/imc/collectors/Collector.java | 30 +++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 src/frontends/android/src/org/strongswan/android/logic/imc/attributes/Attribute.java create mode 100644 src/frontends/android/src/org/strongswan/android/logic/imc/collectors/Collector.java diff --git a/src/frontends/android/src/org/strongswan/android/logic/imc/attributes/Attribute.java b/src/frontends/android/src/org/strongswan/android/logic/imc/attributes/Attribute.java new file mode 100644 index 0000000000..ca759000f0 --- /dev/null +++ b/src/frontends/android/src/org/strongswan/android/logic/imc/attributes/Attribute.java @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2013 Tobias Brunner + * Hochschule fuer Technik Rapperswil + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. See . + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + */ + +package org.strongswan.android.logic.imc.attributes; + +/** + * Interface to be implemented by attribute classes + */ +public interface Attribute +{ + /** + * Returns the binary encoding of the attribute + * @return binary encoding + */ + public byte[] getEncoding(); +} diff --git a/src/frontends/android/src/org/strongswan/android/logic/imc/collectors/Collector.java b/src/frontends/android/src/org/strongswan/android/logic/imc/collectors/Collector.java new file mode 100644 index 0000000000..a686f13a12 --- /dev/null +++ b/src/frontends/android/src/org/strongswan/android/logic/imc/collectors/Collector.java @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2013 Tobias Brunner + * Hochschule fuer Technik Rapperswil + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. See . + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + */ + +package org.strongswan.android.logic.imc.collectors; + +import org.strongswan.android.logic.imc.attributes.Attribute; + +/** + * Interface for measurement collectors + */ +public interface Collector +{ + /** + * This method shall return the result of a measurement, if available + * @return attribute or null + */ + public abstract Attribute getMeasurement(); +} -- 2.47.3