From: Tobias Brunner Date: Thu, 25 Apr 2013 17:07:34 +0000 (+0200) Subject: android: Interfaces for measurement collectors and attributes added X-Git-Tag: 5.1.0dr2~2^2~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4eec7912a1c973b44b314f0a805cb19a1f63a5a3;p=thirdparty%2Fstrongswan.git android: Interfaces for measurement collectors and attributes added --- 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(); +}