file_name
stringlengths
6
86
file_path
stringlengths
45
249
content
stringlengths
47
6.26M
file_size
int64
47
6.26M
language
stringclasses
1 value
extension
stringclasses
1 value
repo_name
stringclasses
767 values
repo_stars
int64
8
14.4k
repo_forks
int64
0
1.17k
repo_open_issues
int64
0
788
repo_created_at
stringclasses
767 values
repo_pushed_at
stringclasses
767 values
AccountActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/AccountActivity.java
package com.example.glass.arshopping; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.TextView; import android.widget.Toast; import com.android.volley.RequestQueue; import com.android.volley.toolbox.JsonObjectRequest; import com.a...
2,888
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
CheckoutActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/CheckoutActivity.java
package com.example.glass.arshopping; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.text.Editable; import android.text.TextUtils; import android.text.TextWatcher; import android.view.View; import android.widget.Button; import android.widget.EditText; import and...
11,519
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
CartActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/CartActivity.java
package com.example.glass.arshopping; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.text.TextUtils; import android.util.Log; import android.view.View; import android.widget.ListView; import android.widget.TextView; import android.widget.Toast; import com.androi...
6,386
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
MainActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/MainActivity.java
package com.example.glass.arshopping; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.TextView; import com.example.glass.ui.GlassGestureDetector.Gesture; public class MainActivity extends BaseActivity { private static final int REQUEST_CODE = 105; private ...
1,257
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
CameraActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/CameraActivity.java
package com.example.glass.arshopping; import android.Manifest.permission; import android.app.Activity; import android.content.Intent; import android.content.pm.PackageManager; import android.os.Bundle; import android.util.DisplayMetrics; import android.util.Size; import android.view.TextureView; import androidx.annota...
3,234
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
OrderListActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/OrderListActivity.java
package com.example.glass.arshopping; import android.content.Context; import android.content.Intent; import android.content.res.Configuration; import android.os.Bundle; import android.view.View; import android.widget.ListView; import android.widget.TextView; import android.widget.Toast; import com.android.volley.Reque...
4,403
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
OrdersActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/OrdersActivity.java
package com.example.glass.arshopping; import android.content.Context; import android.content.Intent; import android.content.res.Configuration; import android.os.Bundle; import android.view.View; import android.widget.ListView; import android.widget.Toast; import androidx.appcompat.app.AppCompatActivity; import com.and...
8,783
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
DBHelper.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/DBHelper.java
package com.example.glass.arshopping; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import android.widget.TextView; import androidx.annotation.Nullable; public class...
2,060
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
BestSellerActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/BestSellerActivity.java
package com.example.glass.arshopping; import android.content.Context; import android.content.Intent; import android.content.res.Configuration; import android.os.Bundle; import android.view.View; import android.widget.ListView; import android.widget.TextView; import android.widget.Toast; import com.android.volley.Reque...
7,721
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
Login.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/Login.java
package com.example.glass.arshopping; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.Toast; import com.android.volley.RequestQueue; import com.android.volley.toolbox....
3,732
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
BaseActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/BaseActivity.java
package com.example.glass.arshopping; import android.os.Bundle; import android.view.MotionEvent; import android.view.View; import androidx.annotation.Nullable; import androidx.fragment.app.FragmentActivity; import com.example.glass.ui.GlassGestureDetector; import com.example.glass.ui.GlassGestureDetector.OnGestureList...
1,404
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
resetPassword.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/resetPassword.java
package com.example.glass.arshopping; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import androidx.appcompat.app.AppCompatActivity; import com.android.volley.RequestQueue; import com.android...
3,832
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
QRMainActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/QRMainActivity.java
package com.example.glass.arshopping; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.TextView; import androidx.annotation.Nullable; import com.example.glass.ui.GlassGestureDetector.Gesture; public class QRMainActivity extends BaseA...
1,984
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
ProductsActivity.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/ProductsActivity.java
package com.example.glass.arshopping; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.ListView; import android.widget.Spinner; im...
9,290
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
Orders.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/models/Orders.java
package com.example.glass.arshopping.models; import android.content.Context; import java.util.List; public class Orders { private String credit_card_id; private int cart_id; private int order_id; private String product_img; private String product_name; private String seller_name; private ...
2,896
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
Seller.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/models/Seller.java
package com.example.glass.arshopping.models; public class Seller { int id; String name; String image; public Seller(int id, String name, String image) { this.id = id; this.name = name; this.image = image; } public int getId() { return id; } public Stri...
424
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
Cart.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/models/Cart.java
package com.example.glass.arshopping.models; public class Cart { String seller_id; String product_name; String quantity; String date; String product_img; String id; String cart_id2; public Cart(String seller_id, String product_name, String quantity, String date, String cart_id, Strin...
1,010
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
Category.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/models/Category.java
package com.example.glass.arshopping.models; public class Category { int id; String name; String image; public Category(int id, String name, String image) { this.id = id; this.name = name; this.image = image; } public int getId() { return id; } public ...
428
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
Product.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/models/Product.java
package com.example.glass.arshopping.models; public class Product { int id; String name; String image; String description; public Product(int id, String name, String image, String description) { this.id = id; this.name = name; this.image = image; this.description = ...
582
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
ProductSeller.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/models/ProductSeller.java
package com.example.glass.arshopping.models; public class ProductSeller { int product_id; Seller seller; double price; public ProductSeller(int product_id, Seller seller, double price) { this.product_id = product_id; this.seller = seller; this.price = price; } public i...
498
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
Global.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/utils/Global.java
package com.example.glass.arshopping.utils; public class Global { static public String url = "http://IP_ADDRESS:PORT"; }
126
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
SVG.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/utils/SVG.java
package com.example.glass.arshopping.utils; import android.content.Context; import android.widget.ImageView; import com.pixplicity.sharp.Sharp; import java.io.IOException; import java.io.InputStream; import okhttp3.Cache; import okhttp3.Call; import okhttp3.Callback; import okhttp3.OkHttpClient; import okhttp3.Request...
1,943
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
CustomerInfoAdapter.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/adapters/CustomerInfoAdapter.java
package com.example.glass.arshopping.adapters; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import...
1,759
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
OrdersAdapter.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/adapters/OrdersAdapter.java
package com.example.glass.arshopping.adapters; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import and...
1,838
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
OrderListAdapter.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/adapters/OrderListAdapter.java
package com.example.glass.arshopping.adapters; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import...
1,577
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
ProductAdapter.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/adapters/ProductAdapter.java
package com.example.glass.arshopping.adapters; import android.content.Context; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.TextView; import androidx.annot...
1,790
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
SellerAdapter.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/adapters/SellerAdapter.java
package com.example.glass.arshopping.adapters; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import and...
1,567
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
CartAdapter.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/adapters/CartAdapter.java
package com.example.glass.arshopping.adapters; import android.content.Context; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.TextView; import androidx.annot...
2,141
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
BestSellerAdapter.java
/FileExtraction/Java_unseen/7people_AR-Shopping/ARShopping/app/src/main/java/com/example/glass/arshopping/adapters/BestSellerAdapter.java
package com.example.glass.arshopping.adapters; import android.content.Context; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.TextView; import androidx.annot...
1,986
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
BuildConfig.java
/FileExtraction/Java_unseen/7people_AR-Shopping/GestureLibrary/main/build/generated/source/buildConfig/debug/com/example/glass/ui/BuildConfig.java
/** * Automatically generated file. DO NOT MODIFY */ package com.example.glass.ui; public final class BuildConfig { public static final boolean DEBUG = Boolean.parseBoolean("true"); public static final String LIBRARY_PACKAGE_NAME = "com.example.glass.ui"; public static final String BUILD_TYPE = "debug"; }
316
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
MotionEventGenerator.java
/FileExtraction/Java_unseen/7people_AR-Shopping/GestureLibrary/main/src/test/java/com/example/glass/ui/MotionEventGenerator.java
/* * Copyright 2019 Google LLC * * 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 agreed to i...
5,132
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
GlassGestureDetectorTest.java
/FileExtraction/Java_unseen/7people_AR-Shopping/GestureLibrary/main/src/test/java/com/example/glass/ui/GlassGestureDetectorTest.java
/* * Copyright 2019 Google LLC * * 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 agreed to i...
25,716
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
GlassGestureDetector.java
/FileExtraction/Java_unseen/7people_AR-Shopping/GestureLibrary/main/src/main/java/com/example/glass/ui/GlassGestureDetector.java
/* * Copyright 2019 Google LLC * * 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 agreed to i...
14,306
Java
.java
7people/AR-Shopping
9
2
0
2023-06-12T14:01:53Z
2023-07-26T07:06:06Z
IssueServiceFacadeTest.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/test/java/com/aprey/jira/plugin/openpoker/IssueServiceFacadeTest.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
4,409
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PersistenceServiceTest.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/test/java/com/aprey/jira/plugin/openpoker/persistence/PersistenceServiceTest.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
8,812
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PokerConfigPageTest.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/test/java/com/aprey/jira/plugin/openpoker/config/PokerConfigPageTest.java
package com.aprey.jira.plugin.openpoker.config; import javax.servlet.http.HttpServletRequest; import java.util.Arrays; import java.util.List; import com.aprey.jira.plugin.openpoker.api.config.ConfigurationManager; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.mock.component.MockComp...
3,962
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
ApplyVoteProcessorTest.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/test/java/com/aprey/jira/plugin/openpoker/api/ApplyVoteProcessorTest.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
2,922
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
StopSessionProcessorTest.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/test/java/com/aprey/jira/plugin/openpoker/api/StopSessionProcessorTest.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
3,179
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
AllowedProjectsConditionTest.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/test/java/com/aprey/jira/plugin/openpoker/api/config/AllowedProjectsConditionTest.java
package com.aprey.jira.plugin.openpoker.api.config; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.mock.component.MockComponentWorker; import com.atlassian.jira.plugin.webfragment.model.JiraHelper; import com.atlassian.jira.project.Project; import com.atlassian.jira.user.ApplicationUs...
3,055
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
ConfigurationManagerTest.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/test/java/com/aprey/jira/plugin/openpoker/api/config/ConfigurationManagerTest.java
package com.aprey.jira.plugin.openpoker.api.config; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.mock.component.MockComponentWorker; import com.atlassian.sal.api.pluginsettings.PluginSettings; import com.at...
2,216
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
EstimationUnit.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/EstimationUnit.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
890
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
UserNotFoundException.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/UserNotFoundException.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,009
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
EstimationGrade.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/EstimationGrade.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
898
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
EstimationScale.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/EstimationScale.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
2,103
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
Deck.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/Deck.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
924
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
User.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/User.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
970
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PokerSession.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/PokerSession.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,261
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
Estimate.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/Estimate.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,033
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
IssueServiceFacade.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/IssueServiceFacade.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
5,149
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
SessionStatus.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/SessionStatus.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,034
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
FistToFive.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/FistToFive.java
/* * Copyright (C) 2022 Public Domain * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your o...
2,491
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
ClassicPlanning.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/ClassicPlanning.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
2,733
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
FinalEstEntity.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/FinalEstEntity.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,155
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PokerSessionEntity.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/PokerSessionEntity.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,610
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
FibonacciDeck.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/FibonacciDeck.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,212
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
FibonacciNumber.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/FibonacciNumber.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
2,771
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
LinearSequence.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/LinearSequence.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
2,668
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
QueryBuilderService.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/QueryBuilderService.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,532
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
EntityToObjConverter.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/EntityToObjConverter.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
3,320
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PersistenceService.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/PersistenceService.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
9,660
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
ClassicPlanningDeck.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/ClassicPlanningDeck.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,218
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
EstimateEntity.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/EstimateEntity.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,257
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
TshirtSizeDeck.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/TshirtSizeDeck.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,203
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
TshirtSize.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/TshirtSize.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
2,470
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
FistToFiveDeck.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/FistToFiveDeck.java
/* * Copyright (C) 2022 Public Domain * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your ...
1,201
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
LinearDeck.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/LinearDeck.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,207
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
EstimationDeckService.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/persistence/EstimationDeckService.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,702
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PokerConfigPage.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/config/PokerConfigPage.java
package com.aprey.jira.plugin.openpoker.config; import javax.servlet.http.HttpServletRequest; import java.util.ArrayList; import java.util.List; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.project.Project; import com.atlassian.jira.security.request.RequestMethod; import com.atlass...
2,276
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
ActionProcessor.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/ActionProcessor.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,586
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
StartSessionProcessor.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/StartSessionProcessor.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,631
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PokerSessionServlet.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/PokerSessionServlet.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
2,741
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
SessionViewDTO.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/SessionViewDTO.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,169
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PokerSessionResource.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/PokerSessionResource.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
3,409
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
StopSessionProcessor.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/StopSessionProcessor.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,674
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
UserConverter.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/UserConverter.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,747
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
ApplyVoteProcessor.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/ApplyVoteProcessor.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
2,293
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
UserDTO.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/UserDTO.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,691
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
DeleteSessionProcessor.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/DeleteSessionProcessor.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,161
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
EstimationViewDTO.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/EstimationViewDTO.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,699
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
PlanningPokerWebPanelProvider.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/PlanningPokerWebPanelProvider.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
5,435
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
EstimateDTO.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/EstimateDTO.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
984
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
SessionAction.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/SessionAction.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,498
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
SessionDTO.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/SessionDTO.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,587
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
VoteProcessor.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/VoteProcessor.java
/* * Copyright (C) 2021 Andriy Preizner * * This file is a part of Open Poker jira plugin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at you...
1,455
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
ConfigurationManager.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/config/ConfigurationManager.java
package com.aprey.jira.plugin.openpoker.api.config; import java.util.ArrayList; import java.util.Arrays; import java.util.stream.Collectors; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.sal.api.pluginsettings.PluginSettings; import com.atlassian.sal.api.pluginsettings.PluginSettingsFact...
1,722
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
AllowedProjectsCondition.java
/FileExtraction/Java_unseen/aprey10_open-poker/src/main/java/com/aprey/jira/plugin/openpoker/api/config/AllowedProjectsCondition.java
package com.aprey.jira.plugin.openpoker.api.config; import java.util.List; import com.atlassian.jira.plugin.webfragment.conditions.AbstractWebCondition; import com.atlassian.jira.plugin.webfragment.model.JiraHelper; import com.atlassian.jira.user.ApplicationUser; /** * Class that defines a condition for the web fra...
1,114
Java
.java
aprey10/open-poker
17
11
14
2020-11-15T00:10:51Z
2023-01-29T20:26:25Z
SmppMessageHandlerTest.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/test/java/org/restcomm/connect/sms/smpp/SmppMessageHandlerTest.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
13,109
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
TelestaxDlrParserTest.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/test/java/org/restcomm/connect/sms/smpp/dlr/provider/TelestaxDlrParserTest.java
package org.restcomm.connect.sms.smpp.dlr.provider; import org.junit.Assert; import org.junit.Test; import org.restcomm.connect.dao.entities.SmsMessage.Status; import org.restcomm.connect.sms.smpp.dlr.spi.DLRPayload; import org.restcomm.connect.sms.smpp.dlr.spi.DlrParser; import org.restcomm.connect.commons.dao.Messa...
1,433
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmsSession.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/SmsSession.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
19,481
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmsStatusNotifier.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/SmsStatusNotifier.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
2,421
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmsServiceException.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/SmsServiceException.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
1,369
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmsServiceProxy.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/SmsServiceProxy.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
5,292
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmsService.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/SmsService.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
37,434
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmsSessionException.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/SmsSessionException.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
1,310
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmppInboundMessageEntity.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/smpp/SmppInboundMessageEntity.java
package org.restcomm.connect.sms.smpp; import org.restcomm.smpp.parameter.TlvSet; import com.cloudhopper.commons.charset.Charset; public class SmppInboundMessageEntity { private final String smppTo; private final String smppFrom; private final String smppContent; private final Charset smppEncoding;...
2,388
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmppInterpreter.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/smpp/SmppInterpreter.java
package org.restcomm.connect.sms.smpp; import akka.actor.Actor; import akka.actor.ActorRef; import akka.actor.Props; import akka.actor.UntypedActor; import akka.actor.UntypedActorContext; import akka.actor.UntypedActorFactory; import com.google.i18n.phonenumbers.NumberParseException; import com.google.i18n.phonenumber...
41,006
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmppOutboundMessageEntity.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/smpp/SmppOutboundMessageEntity.java
package org.restcomm.connect.sms.smpp; import org.restcomm.connect.commons.dao.Sid; import org.restcomm.smpp.parameter.TlvSet; import com.cloudhopper.commons.charset.Charset; public class SmppOutboundMessageEntity { private final String smppTo; private final String smppFrom; private final String smppCo...
2,089
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmppInterpreterParams.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/smpp/SmppInterpreterParams.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
4,318
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
SmppService.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/smpp/SmppService.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
11,385
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z
RegexRemover.java
/FileExtraction/Java_unseen/RestComm_Restcomm-Connect/restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/smpp/RegexRemover.java
/* * TeleStax, Open Source Cloud Communications * Copyright 2011-2014, Telestax Inc and individual contributors * by the @authors tag. * * This program is free software: you can redistribute it and/or modify * under the terms of the GNU Affero General Public License as * published by the Free Software Foundation...
2,087
Java
.java
RestComm/Restcomm-Connect
239
214
788
2012-08-17T17:47:44Z
2023-04-14T20:58:19Z