index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/builder | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/builder/processor/RenderScriptColorFilter.java | package at.favre.lib.dali.builder.processor;
import android.graphics.Bitmap;
import androidx.renderscript.Allocation;
import androidx.renderscript.Element;
import androidx.renderscript.Matrix4f;
import androidx.renderscript.RSRuntimeException;
import androidx.renderscript.RenderScript;
import androidx.renderscript.Sc... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/builder | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/builder/processor/RenderscriptBrightnessProcessor.java | package at.favre.lib.dali.builder.processor;
import android.content.res.Resources;
import android.graphics.Bitmap;
import androidx.renderscript.Allocation;
import androidx.renderscript.RSRuntimeException;
import androidx.renderscript.RenderScript;
import at.favre.lib.dali.ScriptC_brightness;
/**
* This will change... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/util/BenchmarkUtil.java | package at.favre.lib.dali.util;
import android.os.Build;
import android.os.SystemClock;
import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
public final class BenchmarkUtil {
priva... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/util/BitmapUtil.java | package at.favre.lib.dali.util;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.ColorMatrix;
import android.graphics.ColorMatrixColorFilter;
import android.graphics.Matrix;
import android.graphics.Paint... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/util/BuilderUtil.java | package at.favre.lib.dali.util;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.os.Looper;
import android.util.Log;
import android.view.View;
import androidx.renderscript.RenderScript;
import java.nio.charset.StandardCharsets;
import java.security.Messag... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/util/LegacySDKUtil.java | package at.favre.lib.dali.util;
import android.annotation.TargetApi;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.os.Environment;
import android.view.View;
import android.widget.ImageView;
public final class LegacySD... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/util/Precondition.java | package at.favre.lib.dali.util;
public final class Precondition {
private Precondition() {
}
public static void checkNotNull(String messageIfNull, Object obj) {
if (obj == null) {
throw new IllegalArgumentException(messageIfNull);
}
}
public static void checkArgument(S... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/view/ObservableListView.java | package at.favre.lib.dali.view;
import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.widget.ListView;
/**
* Created by PatrickF on 29.05.2014.
*/
public class ObservableListView extends ListView {
private Observers.DrawListener onDrawListener;
pu... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/view/ObservableRecyclerView.java | package at.favre.lib.dali.view;
import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import androidx.annotation.Nullable;
import androidx.recyclerview.widget.RecyclerView;
public class ObservableRecyclerView extends RecyclerView {
private Observers.DrawListener onDraw... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/view/ObservableScrollView.java | package at.favre.lib.dali.view;
import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.widget.ScrollView;
/**
* This is a simple extension to the scrollView that
* allows to set a scrollListener
*/
public class ObservableScrollView extends ScrollView {
... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/view/ObservableViewPager.java | package at.favre.lib.dali.view;
import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import androidx.viewpager.widget.ViewPager;
/**
* Created by PatrickF on 29.05.2014.
*/
public class ObservableViewPager extends ViewPager {
private Observers.DrawListener onDrawLi... |
0 | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali | java-sources/at/favre/lib/dali/0.4.0/at/favre/lib/dali/view/Observers.java | package at.favre.lib.dali.view;
import android.graphics.Canvas;
public class Observers {
public interface DrawListener {
void onDraw(Canvas canvas);
}
public interface ScrollViewListener {
void onScrollChanged(ObservableScrollView scrollView, int x, int y, int oldx, int oldy);
}
}
|
0 | java-sources/at/favre/lib/hkdf/2.0.0/at/favre/lib | java-sources/at/favre/lib/hkdf/2.0.0/at/favre/lib/hkdf/HKDF.java | /*
* Copyright 2017 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
0 | java-sources/at/favre/lib/hkdf/2.0.0/at/favre/lib | java-sources/at/favre/lib/hkdf/2.0.0/at/favre/lib/hkdf/HkdfMacFactory.java | /*
* Copyright 2017 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/Hood.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/Config.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/HoodAPI.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/Page.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/PageEntry.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/Pages.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/Section.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/ViewTemplate.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/ViewTypes.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/actions/BoolConfigAction.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/actions/ButtonDefinition.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/actions/ManagerControl.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/actions/OnClickAction.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/actions/SingleSelectListConfigAction.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/values/ChangeableValue.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/values/DynamicValue.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/values/SpinnerElement.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/values/SpinnerValue.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/interfaces/values/ValueSet.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/ArbitraryTapListener.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/Backend.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/DebugCrashException.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/DeviceStatusUtil.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/HoodUtil.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/PackageInfoAssembler.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/PageUtil.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/PermissionTranslator.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/TypeTranslators.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/defaults/DefaultButtonDefinitions.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/defaults/DefaultConfigActions.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/defaults/DefaultMiscActions.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/util/defaults/DefaultProperties.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/view/DebugEntriesAdapter.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/view/DebugPageContentView.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/view/DebugViewPageAdapter.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/view/HoodController.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/view/HoodDebugPageView.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/view/KeyValueDetailDialogs.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-core/0.7.0/at/favre/lib/hood/view/SwitchableViewpager.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/hood/hood-extended/0.7.0/at/favre/lib/hood | java-sources/at/favre/lib/hood/hood-extended/0.7.0/at/favre/lib/hood/extended/PopHoodActivity.java | /*
* Copyright 2016 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/AutoValue_Config.java | package at.favre.lib.idmask;
import java.security.Provider;
import java.security.SecureRandom;
import org.jetbrains.annotations.Nullable;
// Generated by com.google.auto.value.processor.AutoValueProcessor
final class AutoValue_Config extends Config {
private final ByteToTextEncoding encoding;
private final bool... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/BaseEncoding.java | /*
* Copyright 2018 Patrick Favre-Bulle
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache Lice... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/ByteToTextEncoding.java | package at.favre.lib.idmask;
import at.favre.lib.bytes.Bytes;
import java.util.Objects;
import java.util.regex.Pattern;
/**
* Responsible for encoding byte arrays to ASCII safe text and vice versa.
* More precisely, it is an encoding of binary data in a sequence of printable characters.
*/
public interface ByteTo... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/Cache.java | package at.favre.lib.idmask;
import at.favre.lib.bytes.Bytes;
import net.markenwerk.utils.lrucache.LruCache;
/**
* Cache responsible for caching masked ids
*/
public interface Cache {
/**
* Puts a new id and it's encoded form in the cache.
*
* @param originalId the id
* @param encoded th... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/Config.java | package at.favre.lib.idmask;
import com.google.auto.value.AutoValue;
import org.jetbrains.annotations.Nullable;
import java.security.Provider;
import java.security.SecureRandom;
/**
* Configuration to create a new {@link IdMask} instance.
*/
@AutoValue
public abstract class Config {
/**
* Used byte to te... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/IdMask.java | package at.favre.lib.idmask;
import at.favre.lib.bytes.Bytes;
import java.math.BigInteger;
import java.nio.ByteBuffer;
import java.util.UUID;
/**
* Id mask is responsible for masking/encoding ids in a reversible way.
* <p>
* This is mainly used for database or other ids which are published to the public
* and sh... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/IdMaskEngine.java | package at.favre.lib.idmask;
import at.favre.lib.bytes.Bytes;
import at.favre.lib.hkdf.HKDF;
import javax.crypto.Cipher;
import javax.crypto.Mac;
import javax.crypto.SecretKey;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.nio.ByteBuffer;
import java.security.InvalidKey... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/IdMaskSecurityException.java | package at.favre.lib.idmask;
/**
* Used as exception for probable security relevant issues with given id.
* <p>
* DO NOT pass details of this exception to the client as it may reveal security relevant information.
*/
public class IdMaskSecurityException extends SecurityException {
/**
* Technical reason ... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/IdMasks.java | package at.favre.lib.idmask;
import java.math.BigInteger;
import java.util.UUID;
/**
* Factory and main API of the library. Use to create new IdMask instances for various types.
*/
@SuppressWarnings("WeakerAccess")
public final class IdMasks {
private IdMasks() {
}
/**
* Create new id mask for ma... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/KeyManager.java | package at.favre.lib.idmask;
import at.favre.lib.bytes.Bytes;
import javax.crypto.SecretKey;
import java.util.*;
import static at.favre.lib.bytes.BytesValidators.*;
import static at.favre.lib.idmask.IdMaskEngine.MAX_KEY_ID;
/**
* Manages secret keys of {@link IdMask}. This either encapsulates a single
* active ke... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/LongTuple.java | package at.favre.lib.idmask;
import java.util.Objects;
/**
* Simple tuple encapsulating 2 longs (64 bit integers).
* Can be used to easily mask 2 ids to one masked id.
*/
@SuppressWarnings("WeakerAccess")
public final class LongTuple {
private final long num1;
private final long num2;
/**
* Creat... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/ext/IdMaskJackson.java | package at.favre.lib.idmask.ext;
import at.favre.lib.idmask.IdMask;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databin... |
0 | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask | java-sources/at/favre/lib/id-mask/0.6.0/at/favre/lib/idmask/ext/IdMaskParamConverters.java | package at.favre.lib.idmask.ext;
import at.favre.lib.idmask.IdMask;
import javax.ws.rs.ext.ParamConverter;
import java.math.BigInteger;
import java.util.Objects;
import java.util.UUID;
/**
* A collection of default implementations for JAX-RS 2 ParamConverter for converting query-, path-, matrix-, header-, cookie- a... |
0 | java-sources/at/favre/lib/singlestep-kdf/0.3.0/at/favre/lib/crypto | java-sources/at/favre/lib/singlestep-kdf/0.3.0/at/favre/lib/crypto/singlstepkdf/HFunction.java | /*
* Copyright 2018 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
0 | java-sources/at/favre/lib/singlestep-kdf/0.3.0/at/favre/lib/crypto | java-sources/at/favre/lib/singlestep-kdf/0.3.0/at/favre/lib/crypto/singlstepkdf/HFunctionFactory.java | /*
* Copyright 2018 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
0 | java-sources/at/favre/lib/singlestep-kdf/0.3.0/at/favre/lib/crypto | java-sources/at/favre/lib/singlestep-kdf/0.3.0/at/favre/lib/crypto/singlstepkdf/SingleStepKdf.java | /*
* Copyright 2018 Patrick Favre-Bulle
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
0 | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j/impl/StaticLoggerBinder.java | /**
* Copyright (c) 2004-2013 QOS.ch
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights... |
0 | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j/impl/StaticMDCBinder.java | /**
* Copyright (c) 2004-2013 QOS.ch
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights... |
0 | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j/impl/StaticMarkerBinder.java | /**
* Copyright (c) 2004-2013 QOS.ch
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights... |
0 | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j/impl/TimberAndroidLoggerAdapter.java | /*
* Copyright (c) 2004-2013 QOS.ch
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights ... |
0 | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j | java-sources/at/favre/lib/slf4j-timber/1.0.1/org/slf4j/impl/TimberAndroidLoggerFactory.java | /*
* Copyright (c) 2004-2013 QOS.ch
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights ... |
0 | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos/SybosClient.java | package at.ffesternberg.sybos;
import at.ffesternberg.sybos.entity.SybosEntity;
import at.ffesternberg.sybos.exception.NoSybosTokenException;
import at.ffesternberg.sybos.exception.SybosClientException;
import at.ffesternberg.sybos.exception.WrongSybosTokenException;
import org.slf4j.Logger;
import org.slf4j.LoggerFac... |
0 | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos/SybosEventClient.java | package at.ffesternberg.sybos;
import at.ffesternberg.sybos.entity.Event;
import at.ffesternberg.sybos.exception.SybosClientException;
import org.w3c.dom.Element;
import java.text.ParseException;
import java.util.Collections;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
/**
* Sybos ... |
0 | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos/entity/Event.java | package at.ffesternberg.sybos.entity;
import java.util.Date;
/**
* A Event Entity retuned by the SyBos API
*/
public class Event implements SybosEntity, Comparable<Event> {
private int id;
private Date from;
private Date to;
private String referat;
private String bezeichnung1;
private String... |
0 | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos/entity/SybosEntity.java | package at.ffesternberg.sybos.entity;
/**
* Marker Interface
*/
public interface SybosEntity {
}
|
0 | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos/exception/NoSybosTokenException.java | package at.ffesternberg.sybos.exception;
public class NoSybosTokenException extends SybosClientException {
public NoSybosTokenException() {
super("No sybos Token given! Please set a valid sybos Token!");
}
}
|
0 | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos/exception/SybosClientException.java | package at.ffesternberg.sybos.exception;
public class SybosClientException extends Exception {
public SybosClientException() {
super("An error occured in the sybos Client");
}
public SybosClientException(String message) {
super(message);
}
public SybosClientException(String messag... |
0 | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos | java-sources/at/ff-esternberg/sybos/libsybos/0.1-beta1/at/ffesternberg/sybos/exception/WrongSybosTokenException.java | package at.ffesternberg.sybos.exception;
public class WrongSybosTokenException extends SybosClientException {
public WrongSybosTokenException() {
super("Wrong syBos Token given!");
}
public WrongSybosTokenException(String token) {
super("Wrong syBos Token given! (Token was: " + token + ")"... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/CollectionAwareConfig.java | package at.grahsl.kafka.connect.mongodb;
import org.apache.kafka.common.config.AbstractConfig;
import org.apache.kafka.common.config.ConfigDef;
import org.apache.kafka.common.config.ConfigException;
import java.util.HashMap;
import java.util.Map;
public class CollectionAwareConfig extends AbstractConfig {
//NOT... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/MongoDbSinkConnector.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/MongoDbSinkConnectorConfig.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/MongoDbSinkConnectorConfigTest.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/MongoDbSinkRecordBatches.java | /*
* Copyright (c) 2018. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/MongoDbSinkRecordBatchesTest.java | package at.grahsl.kafka.connect.mongodb;
import com.google.common.collect.Lists;
import org.apache.kafka.connect.sink.SinkRecord;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.DynamicTest;
import org.junit.jupiter.api.TestFactory;
import org.junit.platfo... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/MongoDbSinkTask.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/MongoDbSinkTaskTest.java | package at.grahsl.kafka.connect.mongodb;
import at.grahsl.kafka.connect.mongodb.cdc.debezium.rdbms.RdbmsHandler;
import at.grahsl.kafka.connect.mongodb.processor.id.strategy.BsonOidStrategy;
import at.grahsl.kafka.connect.mongodb.processor.id.strategy.FullKeyStrategy;
import at.grahsl.kafka.connect.mongodb.writemodel.... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/ValidatorWithOperatorsTest.java | package at.grahsl.kafka.connect.mongodb;
import org.apache.kafka.common.config.ConfigException;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.platform.runner.JUnitPlatform;
import org.junit.runner.RunWith;
import java.util.regex.Pattern;
import static at.grahsl.kafka.c... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/VersionUtil.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/CdcHandler.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/CdcOperation.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium/DebeziumCdcHandler.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium/OperationType.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium/OperationTypeTest.java | package at.grahsl.kafka.connect.mongodb.cdc.debezium;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.platform.runner.JUnitPlatform;
import org.junit.runner.RunWith;
import static org.junit.jupiter.api.Assertions.*;
@RunWith(JUnitPlatform.class)
public class OperationTyp... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium/mongodb/MongoDbDelete.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium/mongodb/MongoDbDeleteTest.java | package at.grahsl.kafka.connect.mongodb.cdc.debezium.mongodb;
import at.grahsl.kafka.connect.mongodb.converter.SinkDocument;
import com.mongodb.DBCollection;
import com.mongodb.client.model.DeleteOneModel;
import com.mongodb.client.model.WriteModel;
import org.apache.kafka.connect.errors.DataException;
import org.bson... |
0 | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium | java-sources/at/grahsl/kafka/connect/kafka-connect-mongodb/1.4.0/at/grahsl/kafka/connect/mongodb/cdc/debezium/mongodb/MongoDbHandler.java | /*
* Copyright (c) 2017. Hans-Peter Grahsl (grahslhp@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.