index
int64
repo_id
string
file_path
string
content
string
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/HumidityMetric.java
package app.safety24.core.metrics; /** * Represents a metric for tracking humidity levels. * This class extends {@link FloatMinMaxMetric} and stores the minimum, maximum, and current humidity values. * The humidity values are typically expressed as percentages (0% to 100%). * * <p>Example use cases: * <ul> * ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/IntegerMinMaxMetric.java
package app.safety24.core.metrics; /** * Represents a metric that tracks an integer value along with its minimum and maximum bounds. * This class is useful for metrics where a range of integer values (min, max) is significant in addition to the current value. * * <p>Example use cases: * <ul> * <li>Tracking per...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/InternetStrengthMetric.java
package app.safety24.core.metrics; /** * Represents a metric for tracking the internet connection strength. * This class stores the signal strength for both mobile data and Wi-Fi connections. * The strength values are typically represented as integers, such as dBm or percentage. * * <p>Example use cases: * <ul> ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/LightMetric.java
package app.safety24.core.metrics; /** * Represents a metric for tracking ambient light levels. * This class extends {@link FloatMinMaxMetric} and stores the minimum, maximum, and current light intensity values. * Light intensity is typically measured in lux (lumens per square meter). * * <p>Example use cases: *...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/ListMetric.java
package app.safety24.core.metrics; import java.util.List; /** * Represents a generic metric that stores a list of values. * This class extends {@code MetricGenericValue} and can store a list of any type of value. * * <p>Example use cases: * <ul> * <li>Tracking a list of activities, such as exercises performed...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/LocationMetric.java
package app.safety24.core.metrics; import java.io.Serializable; /** * Represents a metric for tracking location-related data. * This class implements {@link Serializable} and stores information such as speed, altitude, distance, latitude, and longitude. * * <p>Example use cases: * <ul> * <li>Tracking the user...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/LocationsMetric.java
package app.safety24.core.metrics; import java.util.ArrayList; import java.util.List; /** * Represents a metric for tracking a series of location-related data points. * This class stores a list of {@link LocationMetric} instances and additional metrics, such as maximum speed, * average signal strength, fall detect...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/LongMinMaxMetric.java
package app.safety24.core.metrics; /** * Represents a metric that tracks a long integer value along with its minimum and maximum bounds. * This class is useful for metrics where a range of long integer values (min, max) is significant in addition to the current value. * * <p>Example use cases: * <ul> * <li>Tra...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/MessagesMetric.java
package app.safety24.core.metrics; import java.util.ArrayList; import java.util.List; /** * Represents a metric for tracking a list of SMS messages. * This class stores a list of {@link SmsMessage} instances, each representing an individual SMS message. * * <p>Example use cases: * <ul> * <li>Tracking received...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/MetricGenericValue.java
package app.safety24.core.metrics; import java.io.Serializable; public abstract class MetricGenericValue implements Serializable { String encryptedValue; public boolean dataIsEncrypted() { return encryptedValue != null && !encryptedValue.isEmpty(); } }
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/MetricType.java
package app.safety24.core.metrics; import java.util.Arrays; /** * Represents different types of metrics that can be collected and monitored within the system. * Each metric type is associated with a specific class that defines the structure and behavior of the metric value. * * <p>Possible use cases: * <ul> * ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/OffBodyMetric.java
package app.safety24.core.metrics; /** * Represents a metric indicating whether a wearable device is off the body. */ public class OffBodyMetric extends MetricGenericValue { /** * Indicates whether the device is off the body. */ private boolean offBody; /** * Checks if the device is off...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/PhoneCallDetails.java
package app.safety24.core.metrics; import java.io.Serializable; import java.time.LocalDateTime; /** * Represents the details of a phone call. * This class implements {@link Serializable} and stores information such as the phone number, * call type, date, and duration of the phone call. * * <p>Example use cases: ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/PhoneCallType.java
package app.safety24.core.metrics; /** * Represents the different types of phone calls. * This enum classifies phone calls into categories such as incoming, outgoing, and missed. * * <p>Example use cases: * <ul> * <li>Classifying and displaying phone call logs.</li> * <li>Generating reports on call history ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/PhoneCallsMetric.java
package app.safety24.core.metrics; import java.util.ArrayList; import java.util.List; /** * Represents a metric for tracking a list of phone call details. * This class stores a list of {@link PhoneCallDetails} instances, where each instance contains information * about an individual phone call such as the phone nu...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/PhoneOrientation.java
package app.safety24.core.metrics; /** * Represents the orientation of the phone relative to its screen position. * This enum can be used to determine how the phone is positioned, which can be relevant for * various features such as gesture detection, activity tracking, or event triggering. * * <p>Possible use ca...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/ScreenTimeMetric.java
package app.safety24.core.metrics; /** * Represents a metric for tracking screen time. * This class stores the duration for which the screen has been on and off, typically measured in seconds. * * <p>Example use cases: * <ul> * <li>Monitoring user screen time for productivity or wellness purposes.</li> * <l...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/SmsMessage.java
package app.safety24.core.metrics; import java.io.Serializable; import java.time.LocalDateTime; /** * Represents an SMS message with sender/recipient phone number and date of the message. * This class implements {@link Serializable} to allow instances to be serialized and deserialized. * * <p>Example use cases: ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/SpeedMetric.java
package app.safety24.core.metrics; /** * Represents a metric for tracking speed. * This class extends {@link FloatMinMaxMetric} and stores the minimum, maximum, and current speed values. * Speed is typically measured in meters per second (m/s) or other units as required. * * <p>Example use cases: * <ul> * <li...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/StepCountMetric.java
package app.safety24.core.metrics; /** * Represents a metric for tracking the number of steps taken. * This class extends {@link IntegerMinMaxMetric} and stores the minimum, maximum, and current step counts. * * <p>Example use cases: * <ul> * <li>Monitoring step count for fitness tracking applications.</li> *...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/StressMetric.java
package app.safety24.core.metrics; /** * Represents a stress metric that holds a specific {@link StressType} value. * This metric is used to indicate the current stress level of the user or device context. */ public class StressMetric extends MetricGenericValue { /** * The stress level value. */ ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/StressType.java
package app.safety24.core.metrics; /** * Represents different levels of stress intensity detected or calculated by the system. */ public enum StressType { /** * Represents an extreme level of stress. */ EXTREME, /** * Represents a very high level of stress. */ VERY_HIGH, /*...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/StringMetric.java
package app.safety24.core.metrics; /** * Represents a metric that stores a string value. * This class extends {@code MetricGenericValue} and holds a single string value. * * <p>Example use cases: * <ul> * <li>Storing textual information such as device names, status messages, or identifiers.</li> * <li>Track...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/metrics/WearableMetric.java
package app.safety24.core.metrics; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; /** * Represents a metric for tracking data from wearable devices. * This class stores a map of {@link MetricType} to {@link MetricGenericValue}, where each entry represents a specific type of metric and its corr...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/security/AbstractDataSecurity.java
package app.safety24.core.security; import app.safety24.core.metrics.MetricType; import java.util.HashMap; import java.util.Map; /** * @author Ruslan Konovalov */ public abstract class AbstractDataSecurity implements DataSecurity { private Map<MetricType, DataSecurityLevel> securityMap = new HashMap<>(); ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/security/DataSecurity.java
package app.safety24.core.security; import java.util.Map; import app.safety24.core.metrics.MetricType; public interface DataSecurity { Map<MetricType, DataSecurityLevel> buildSecurityMap(); DataSecurityLevel getSecurityLevel(MetricType metricType, DataSecurityLevel defaultSecurityLevel); }
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/security/DataSecurityLevel.java
package app.safety24.core.security; public enum DataSecurityLevel { /** * Data NOT encrypted and saved on server as is * In case of data leakage it will be visible as is for intruder */ NO_ENCRYPTION, /** * Data encrypted using server's public key. * Data is accessible by server ...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/security/ProdDataSecurity.java
package app.safety24.core.security; import java.util.HashMap; import java.util.Map; import app.safety24.core.metrics.MetricType; public class ProdDataSecurity extends AbstractDataSecurity { @Override public Map<MetricType, DataSecurityLevel> buildSecurityMap() { Map<MetricType, DataSecurityLevel> se...
0
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core
java-sources/app/safety24/safety24-core/1.0.9/app/safety24/core/security/UatDataSecurity.java
package app.safety24.core.security; import java.util.HashMap; import java.util.Map; import app.safety24.core.metrics.MetricType; public class UatDataSecurity extends AbstractDataSecurity { @Override public Map<MetricType, DataSecurityLevel> buildSecurityMap() { Map<MetricType, DataSecurityLevel> sec...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/AccessToken.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/AuthenticatorFactory.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/AuthenticatorInterface.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/ClientAbstract.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/CredentialsInterface.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/HttpClientFactory.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Parser.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/TagAbstract.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/TokenStoreInterface.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Authenticator/AnonymousAuthenticator.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Authenticator/ApiKeyAuthenticator.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Authenticator/HttpBasicAuthenticator.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Authenticator/HttpBearerAuthenticator.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Authenticator/OAuth2Authenticator.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Credentials/Anonymous.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Credentials/ApiKey.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Credentials/HttpBasic.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Credentials/HttpBearer.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Credentials/OAuth2.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/ClientException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/KnownStatusCodeException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/ParseException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/UnknownStatusCodeException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/Authenticator/AccessTokenRequestException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/Authenticator/FoundNoAccessTokenException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/Authenticator/InvalidAccessTokenException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/Authenticator/InvalidCredentialsException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/Exception/Authenticator/TokenPersistException.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/TokenStore/FileTokenStore.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client
java-sources/app/sdkgen/client/2.0.2/app/sdkgen/client/TokenStore/MemoryTokenStore.java
/* * SDKgen is a powerful code generator to automatically build client SDKs for your REST API. * For the current version and information visit <https://sdkgen.app> * * Copyright (c) Christoph Kappestein <christoph.kappestein@gmail.com> * * For the full copyright and license information, please view the LICENSE *...
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/Controller/OMDriver.java
package com.simplifyOM.Controller; import java.io.File; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.json.JSONObject; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.simplifyOM.DTO.Attributes; import com.simplifyOM.DTO.OMCapabilities;...
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/DTO/Attributes.java
package com.simplifyOM.DTO; public class Attributes { private String name = null; private String value = null; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value...
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/DTO/OMCapabilities.java
package com.simplifyOM.DTO; import java.util.HashMap; public class OMCapabilities { private HashMap<String, String> omDetail = new HashMap<String, String>(); public void setOMCapabilities(String OMdetailName, String value) { omDetail.put(OMdetailName, value); } public HashMap<String, String> getOmDetail() { ...
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/DTO/Object.java
package com.simplifyOM.DTO; import java.util.ArrayList; import java.util.List; import com.simplifyOM.Exception.AttributeNotFoundException; public class Object { private List<Attributes> attributes = new ArrayList<Attributes>(); private int projectId = -1; private String moduleName = null; private String pageName...
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/Exception/AttributeNotFoundException.java
package com.simplifyOM.Exception; public class AttributeNotFoundException extends Exception { private String attributeName; public AttributeNotFoundException(String attributeName) { this.attributeName = attributeName; } public String getMessage() { return "Attibute not found: " + attributeName; } }
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/Exception/CapabilitiesException.java
package com.simplifyOM.Exception; public class CapabilitiesException extends Exception { private String capName; public CapabilitiesException(String capName) { this.capName = capName; } @Override public String toString() { return (capName + " Missing or Empty in capabilities"); } }
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/Exception/InvalidTokenException.java
package com.simplifyOM.Exception; public class InvalidTokenException extends Exception { public InvalidTokenException(String message) { super(message); } }
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/Exception/ObjectNotFound.java
package com.simplifyOM.Exception; public class ObjectNotFound extends Exception { private String objectName; public ObjectNotFound(String objectName) { this.objectName = objectName; } public String getMessage() { return "Object not found: " + objectName; } }
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/Exception/ProjectIdNotFound.java
package com.simplifyOM.Exception; public class ProjectIdNotFound extends Exception { private int projectId; public ProjectIdNotFound(int projectId) { this.projectId = projectId; } @Override public String toString() { return "Project Id:" + projectId + " Not Found"; } }
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/Exception/ServerException.java
package com.simplifyOM.Exception; public class ServerException extends Exception { public ServerException(String message) { super(message); } }
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/HttpUtility/ApiUtil.java
package com.simplifyOM.HttpUtility; import java.security.KeyManagementException; import java.security.KeyStoreException; import java.security.NoSuchAlgorithmException; import java.util.Map; import javax.net.ssl.SSLContext; import org.apache.http.HttpEntity; import org.apache.http.client.config.RequestConfig; import ...
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/HttpUtility/Library.java
/* * This Java source file was generated by the Gradle 'init' task. */ package com.simplifyOM.HttpUtility; public class Library { public boolean someLibraryMethod() { return true; } }
0
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM
java-sources/app/simplifyom/sdk/app.simplifyom.sdk/1.0.6/com/simplifyOM/Interface/ObjectHandler.java
package com.simplifyOM.Interface; import com.simplifyOM.DTO.OMCapabilities; import com.simplifyOM.DTO.Object; import com.simplifyOM.Exception.CapabilitiesException; import com.simplifyOM.Exception.ObjectNotFound; import com.simplifyOM.Exception.ServerException; public interface ObjectHandler { public void setOMCapa...
0
java-sources/app/softwork/kobol/lexer-parser
java-sources/app/softwork/kobol/lexer-parser/0.2.6/CobolLexer.java
// Generated by JFlex 1.9.1 http://jflex.de/ (tweaked for IntelliJ platform) // source: src/main/kotlin/app/softwork/kobol/Cobol.flex package app.softwork.kobol; import com.intellij.lexer.FlexLexer; import com.intellij.psi.tree.IElementType; import com.intellij.psi.TokenType; import static app.softwork.kobol.CobolTy...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolAccepting.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolAccepting extends PsiElement { @NotNull CobolFunctionName getFunctionName(); @NotNull CobolVariable g...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolAdding.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolAdding extends PsiElement { @NotNull CobolExpr getExpr(); @NotNull List<CobolVariable> getVariableLis...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolAfterWhile.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolAfterWhile extends PsiElement { }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolAnys.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolAnys extends PsiElement { }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolAsDoWhile.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolAsDoWhile extends PsiElement { @Nullable CobolAfterWhile getAfterWhile(); @Nullable CobolBeforeWhile ...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolAuthorClause.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolAuthorClause extends PsiElement { @NotNull CobolAnys getAnys(); @NotNull CobolComments getComments();...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBeforeWhile.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBeforeWhile extends PsiElement { }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBlockClause.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBlockClause extends PsiElement { @NotNull PsiElement getNumber(); }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExpr.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExpr extends PsiElement { @Nullable CobolBooleanExprAnd getBooleanExprAnd(); @Nullable CobolBo...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExprAnd.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExprAnd extends PsiElement { @NotNull CobolBooleanExpr getBooleanExpr(); @NotNull CobolBoolean...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExprClause.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExprClause extends PsiElement { @Nullable CobolBooleanExprClauseBigger getBooleanExprClauseBigger()...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExprClauseBigger.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExprClauseBigger extends PsiElement { @Nullable CobolEql getEql(); }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExprClauseLeft.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExprClauseLeft extends PsiElement { @NotNull CobolExpr getExpr(); }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExprClauseNt.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExprClauseNt extends PsiElement { @NotNull CobolEql getEql(); @Nullable CobolNt getNt(); }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExprClauseRight.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExprClauseRight extends PsiElement { @NotNull CobolExpr getExpr(); }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExprClauseSmaller.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExprClauseSmaller extends PsiElement { @Nullable CobolEql getEql(); }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolBooleanExprOr.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolBooleanExprOr extends PsiElement { @NotNull CobolBooleanExpr getBooleanExpr(); @NotNull CobolBooleanE...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolCalling.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolCalling extends PsiElement { @NotNull CobolCallingName getCallingName(); @Nullable CobolCallingParame...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolCallingName.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolCallingName extends PsiElement { @Nullable CobolCallingNameProgramID getCallingNameProgramID(); @Nullab...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolCallingNameProgramID.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; import app.softwork.kobol.named.CobolNamedElement; public interface CobolCallingNameProgramID extends CobolNamedElement { @NotNull...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolCallingParameter.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolCallingParameter extends PsiElement { @NotNull List<CobolExpr> getExprList(); }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolClosing.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolClosing extends PsiElement { @NotNull List<CobolFileDescriptionID> getFileDescriptionIDList(); }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolComments.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolComments extends PsiElement { }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolCompressed.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolCompressed extends PsiElement { }
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolComputing.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolComputing extends PsiElement { @NotNull CobolExpr getExpr(); @NotNull CobolVariable getVariable(); }...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolConfig.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolConfig extends PsiElement { @NotNull CobolComments getComments(); @Nullable CobolSpecialNamesDef getS...
0
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork
java-sources/app/softwork/kobol/lexer-parser/0.2.6/app/softwork/kobol/CobolCtrl.java
// This is a generated file. Not intended for manual editing. package app.softwork.kobol; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface CobolCtrl extends PsiElement { @Nullable CobolCtrlContinue getCtrlContinue(); @Nullable CobolCtrlGoBack ge...