text stringlengths 7 995k |
|---|
package com.zl.uua.handler;
import org.springframework.security.core.AuthenticationException;
import org.springframework.security.web.authentication.SimpleUrlAuthenticationFailureHandler;
import org.springframework.stereotype.Component;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServl... |
package sh.ajo.linkeye.linkeye.model;
import org.hibernate.annotations.CreationTimestamp;
import org.hibernate.annotations.OnDelete;
import org.hibernate.annotations.OnDeleteAction;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
import java.util.Date;
@Entity
public class Click {
@Id
... |
package org.andidev.applicationname.entity;
import java.io.Serializable;
import javax.persistence.*;
import lombok.*;
import static lombok.AccessLevel.PROTECTED;
import org.andidev.applicationname.entity.abstracts.IdEntity;
@Entity
@NoArgsConstructor(access = PROTECTED)
@RequiredArgsConstructor
@Setter
@Getter
public... |
package uk.gov.companieshouse.api.accounts.transformer;
import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Component;
import uk.gov.companieshouse.api.accounts.enumeration.AccountingNoteType;
import uk.gov.companieshouse.api.accounts.model.entity.smallfull.notes.creditorswithinoneyear.Cr... |
package com.tuge.myapp;
import android.content.Context;
import android.graphics.Matrix;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import androidx.appcompat.widget.AppCompatImageView;
/**
* Image View with custom content crop logic.
*/
public class TopCropImageView extends AppComp... |
package com.univocity.trader.indicators;
import com.univocity.trader.candles.*;
import com.univocity.trader.indicators.base.*;
import com.univocity.trader.strategy.*;
public class ConnorsRSI extends SingleValueIndicator {
private RSI rsi;
private StreakIndicator streak;
private RSI streakRsi;
private... |
package org.motechproject.ivr.service;
import org.codehaus.jackson.annotate.JsonProperty;
import org.motechproject.event.MotechEvent;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
/**
* This class is used to request a call from the IVR system
* <p/>
* To recei... |
package edu.prahlad.java.course2.interfaces.looselyCoupled;
public class TaxCalculator2019 implements TaxCalculator{
@Override
public double calculateTax() {
return 0;
}
} |
/*
* Copyright 2014 JBoss by Red Hat.
*
* 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 agr... |
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// -------------------------------------------... |
/**
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
*
* 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 requ... |
package com.forest.project.service.impl;
import com.forest.core.AbstractService;
import com.forest.project.model.VRole;
import com.forest.project.service.VRoleService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/**
* Created by CodeGenerator on 201... |
package com.smartmanageragent.exteriorcomm.testconnections;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android.os.... |
package com.github.eikecochu.sqlbuilder;
/**
* Implemented by keywords that precede the HAVING statement.
*
* @param <T> the generic type returned by some fluent methods of this interface
*/
public interface BeforeHaving<T extends BeforeHaving<T>> extends QueryPart, QueryPartSQL<T>, QueryPartLinked<T> {
/**
* ... |
public class ChangeMachine {
private int mQuarters;
private int mDimes;
private int mNickels;
private int mPennies;
public ChangeMachine() {
mQuarters = 20;
mDimes = 20;
mNickels = 20;
mPennies = 20;
}
public int getQuarters(){
return mQuarters;
}
public int getDimes(){
retu... |
package org.cytosm.cypher2sql.lowering.sqltree.from;
import org.cytosm.cypher2sql.lowering.sqltree.WithSelect;
import org.cytosm.cypher2sql.lowering.typeck.NameProvider;
import org.cytosm.cypher2sql.lowering.typeck.var.NodeOrTempOrRelVar;
import org.cytosm.cypher2sql.lowering.typeck.var.Var;
import java.util.ArrayLis... |
package regression.CCD424;
/**
*
*/
public enum Foo implements java.io.Serializable {
STRING_CMP(new Comparable() {
public int compareTo(Object o) {
return 0;
}
});
Comparable comp;
Foo(Comparable c) {
comp = c;
}
} |
package cui.holamundo;
public class HolaMundo6a {
public static void main(String[] args) {
HolaMundo6b.saludar(6);
}
} |
package mobi.chouette.exchange.validation.parameters;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import lombok.extern.log4j.Log4j;
import mobi.chouette.model.NeptuneIdentifiedObject;
import mobi.chouette.model.type.TransportModeNameEnum;
@Log4j
public cla... |
/*
* 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 License, Version 2.0
* (the "License"); you may ... |
/*
* This file is part of adventure, licensed under the MIT License.
*
* Copyright (c) 2017-2021 KyoriPowered
*
* 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, inc... |
/*
* 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 License, Version 2.0 (the
* "License"); you ... |
package info.developerblog.examples.thirft.api;
import example.TGreetingService;
import example.TName;
import org.apache.thrift.TException;
import ru.trylogic.spring.boot.thrift.annotation.ThriftController;
/**
* Created by aleksandr on 01.09.15.
*/
@ThriftController("/api")
public class TGreetingServiceHandler imp... |
package testapplication.conf;
import com.google.inject.Singleton;
import java.io.IOException;
import java.io.Writer;
import ninja.Context;
import ninja.Result;
import ninja.template.TemplateEngine;
import ninja.utils.ResponseStreams;
import org.r10r.jippihtml.JippiHtml;
import org.r10r.jippihtml.JippiHtml.*;
import or... |
package com.bergerkiller.bukkit.tc.properties.standard.category;
import java.util.Optional;
import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender;
import com.bergerkiller.bukkit.common.config.ConfigurationNode;
import com.bergerkiller.bukkit.tc.Permission;
import com.bergerkiller.bukkit.tc.Util;
impor... |
/*
* Copyright 1999-2011 Alibaba Group.
*
* 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 la... |
package com.owl.example.databinding;
import android.databinding.DataBindingUtil;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import com.owl.example.databinding.databinding.ActivityExpressionBinding;
import java.util.Random;
/**
* Created by... |
package com.itgorillaz.lnk2pwn.controller;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import javax.annotation.PostConstruct;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.L... |
package org.eclipse.php.internal.ui.editor.contentassist;
public interface IPHPCompletionProposalExtension {
Object getExtraInfo();
} |
package com.liemily.tradesimulation.broker;
import com.liemily.tradesimulation.account.AccountService;
import com.liemily.tradesimulation.account.exceptions.InsufficientFundsException;
import com.liemily.tradesimulation.accountstock.AccountStockService;
import com.liemily.tradesimulation.accountstock.exceptions.Insuff... |
package com.citelic.utility.tools;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import com.citelic.cache.Cache;
import com.citelic.cache.impl.item.ItemDefinitions;
public class DumpItemRenderIds {
public static void dumpRenders() throws IOException {
... |
package org.ayo.fringe.model.timeline;
import org.ayo.list.adapter.ItemBean;
import org.ayo.fringe.model.BaseModel;
import org.ayo.fringe.model.User;
import org.ayo.fringe.ui.photo.AyoGalleryFragment;
import java.io.Serializable;
import java.util.List;
/**
* 为什么会有这么多注释掉的,因为一开始我是用的微博API,但微博API限制太多,根本没法做一个能用的仿微博客户端,
... |
package com.gas.ext.file;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundExc... |
/*
* Copyright 2012-2019 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
package co.develoop.androidcleanarchitecturesample.usecase.user;
import java.util.List;
import co.develoop.androidcleanarchitecture.client.transaction.Transaction;
import co.develoop.androidcleanarchitecture.usecase.UseCase;
import co.develoop.androidcleanarchitecturesample.domain.model.user.RandomUser;
import co.dev... |
package com.coolweather.android.util;
import android.text.TextUtils;
import android.util.Log;
import com.coolweather.android.db.City;
import com.coolweather.android.db.County;
import com.coolweather.android.db.Province;
import com.coolweather.android.gson.Weather;
import com.google.gson.Gson;
import org.json.JSONArr... |
/*
* The MIT License
*
* Copyright (c) 2016-2017 Marcelo "Ataxexe" Guimarães
* <ataxexe@devnull.tools>
*
* ----------------------------------------------------------------------
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation... |
package org.apereo.cas.adaptors.x509.authentication.ldap;
import org.apereo.cas.adaptors.x509.authentication.ResourceCRLFetcher;
import org.apereo.cas.util.EncodingUtils;
import org.apereo.cas.util.LdapUtils;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import lombok.val;
import org.ldapti... |
/*
* Copyright (C) 2011 The Android Open Source Project
*
* 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 app... |
/*
* 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 License, Version 2.0
* (the "License"); you may ... |
/*
* EasyBimehLandingLib
*
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ).
*/
package ir.notifaano.server;
import java.io.File;
import java.io.IOException;
import java.io.InvalidObjectException;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.la... |
package com.iclnbi.iclnbi_v2_00;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for ActualState.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* <simpleType name="ActualState">
* <... |
/*
* 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 License, Version 2.0 (the
* "License"); you ... |
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* ETC绑定用户信息修改
*
* @author auto create
* @since 1.0, 2021-03-10 10:30:34
*/
public class AlipayCommerceTransportEtcBindModifyModel extends AlipayObject {
private static final long serialVersio... |
package mcjty.enigma.compat;
import mcjty.lostcities.api.ILostChunkGenerator;
import mcjty.lostcities.api.ILostChunkInfo;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraft.world.WorldServer;
public class LostCitySupport {
public static boolean isLostCity(World world)... |
package com.pcchin.actualtime;
import android.Manifest;
import android.annotation.SuppressLint;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Location;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.support.v4.app.ActivityCompat;
... |
package org.infinispan.rhq;
import static org.infinispan.rhq.RhqUtil.constructNumericMeasure;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.mc4j.ems.connection.EmsConnection;
import org.mc4j.ems.connection.bean.EmsBean;
import org.mc4j.ems.conne... |
/**
* Copyright (c) 2003 The Apereo Foundation
*
* Licensed under the Educational Community 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://opensource.org/licenses/ecl2
*
* Unless required ... |
/*
* Copyright 2002-2020 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
/*
*AVISO LEGAL
© Copyright
*Este programa esta protegido por la ley de derechos de autor.
*La reproduccion o distribucion ilicita de este programa o de cualquiera de
*sus partes esta penado por la ley con severas sanciones civiles y penales,
*y seran objeto de todas las sanciones legales que correspondan.
*Su conteni... |
package com.yepit.mapp.crp.dto.system;
import com.yepit.mapp.framework.dto.common.BaseRequest;
/**
* Created by qianlong on 2017/8/19.
*/
public class AdminLoginRequest {
private static final long serialVersionUID = -5569458060626435297L;
private String loginName;
private String loginPwd;
public ... |
/*
* 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 License, Version 2.0
* (the "License"); you may ... |
/*
* 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 in writing, software
* distribut... |
package me.mingshan.bytecode.type.constantpool;
public enum CpInfoTagEnum {
CONSTANT_Class((byte) 7),
CONSTANT_Fieldref((byte) 9),
CONSTANT_Methodref((byte) 10),
CONSTANT_InterfaceMethodref((byte) 11),
CONSTANT_String((byte) 8),
CONSTANT_Integer((byte) 3),
CONSTANT_Float((byte) 4),
CONS... |
/*
* Copyright 2019 Haulmont.
*
* 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 in... |
package com.bahn.casestudy;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class IntegrationTests {
@Test
void contextLoads() {
}
} |
/*
* 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 License, Version 2.0 (the
* "License"); you ... |
/**
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
*/
package com.oracle.bmc.core.internal.http;
import com.oracle.bmc.http.internal.ResponseHelper;
import com.oracle.bmc.core.model.*;
import com.oracle.bmc.core.requests.*;
import com.oracle.bmc.core.responses.*;
import org.apache.com... |
/*
* 文 件 名: XmlParser.java
* 版 权: gomyck
* 描 述: <描述>
* 修 改 人: 郝洋
* 修改时间: 2017-1-7
* 跟踪单号: <跟踪单号>
* 修改单号: <修改单号>
* 修改内容: <修改内容>
*/
package com.cevr.component.util;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.InputStream;
import java.io.PrintWriter;
import java.io.Stri... |
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: https://plantuml.com
*
* If you like this project or if ... |
package com.mapabc.mapabcsdk.testapp.activity.style;
import android.graphics.Color;
import android.graphics.Point;
import android.graphics.PointF;
import android.os.Bundle;
import android.support.v4.content.res.ResourcesCompat;
import android.support.v7.app.AppCompatActivity;
import android.view.MenuItem;
import andro... |
package com.micro.db.jdbc;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
imp... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.datafactory;
import com.azure.core.util.Context;
/** Samples for PrivateLinkResources Get. */
public final class PrivateLinkRes... |
// This is a generated file. Not intended for manual editing.
package org.c3lang.intellijplugin.parser.psi;
import java.util.List;
import org.jetbrains.annotations.*;
import com.intellij.psi.PsiElement;
public interface C3Constant extends PsiElement {
} |
package com.fuzzywave.commons.resources;
import com.badlogic.gdx.assets.AssetLoaderParameters;
import com.badlogic.gdx.assets.loaders.BitmapFontLoader;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.utils.Json;
import com.badlogic.gdx.utils.JsonValue;
public class Asset implements Json.Serializable... |
/*
* Copyright 2017 Apereo
*
* 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 in wr... |
package de.morrigan.dev.test.muphin.helper;
import org.junit.runner.RunWith;
import de.morrigan.dev.muphin.core.WorkflowRunner;
@RunWith(WorkflowRunner.class)
public class MuphinTestSuite {
} |
package ch22.cooperation;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import ch22.cooperation.Need.Type;
class Need {
enum Type {
EVEN, ODD
};
public Type nextType = Type.EVEN;
}
class OddWriter implements Runnable {
... |
// Copyright (C) 2014 The Android Open Source Project
//
// 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 ... |
package filters;
public class KalmanFilter extends Filter {
} |
/*******************************************************************************
* COPYRIGHT(c) 2015 STMicroelectronics
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must ret... |
package com.qinwei.deathnote.config;
import com.qinwei.deathnote.support.scan.ResourcesScanner;
import lombok.extern.slf4j.Slf4j;
import java.util.concurrent.atomic.AtomicReference;
/**
* @author qinwei
* @date 2019-05-09
*/
@Slf4j
public class StandardConfig extends AbstractConfig {
private static final Ato... |
package com.leetcode.algorithm.medium.differentwaystoaddparentheses;
import org.junit.jupiter.api.Test;
import java.util.Arrays;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class SolutionTest {
@Test
public void testCase1() {
Solution solution = new Solution();
assertEquals(Array... |
/*
* Copyright 2019 GridGain Systems, Inc. and Contributors.
*
* Licensed under the GridGain Community Edition License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.gridgain.com/products/software/community-edition... |
/*
* Copyright 2013 Boyle Software, Inc.
*
* 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... |
package vdi.node.management;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.lang.management.ManagementFactory;
import java.lang.management.OperatingSystemMXBean;
import java.util.HashSet;
import java.util.Set;
im... |
/*
* Copyright 1999-2017 Alibaba Group Holding Ltd.
*
* 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 applica... |
package com.mastercard.api.moneysend.v2.mapping.services;
import com.mastercard.api.common.Environment;
import com.mastercard.api.moneysend.v2.mapping.domain.PanEligibility;
import com.mastercard.api.moneysend.v2.mapping.domain.PanEligibilityRequest;
import com.mastercard.api.moneysend.v2.mapping.domain.factory.Object... |
package com.codepath.apps.restclienttemplate.models;
import com.codepath.apps.restclienttemplate.TimeFormatter;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.parceler.Parcel;
import java.sql.Time;
import java.util.ArrayList;
import java.util.List;
@Parcel
public cl... |
package org.adorsys.adpharma.client.jpa.inventoryitem;
import org.adorsys.javafx.crud.extensions.model.PropertyReader;
import org.adorsys.javafx.crud.extensions.view.AbstractToStringListCell;
public class InventoryItemRecordingUserListCell extends AbstractToStringListCell<InventoryItemRecordingUser>
{
@Override
... |
/*
* Copyright 2002-2018 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
/*
* Copyright 2021 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkale.asm;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.*;
import static or... |
package com.pt.shellprogramlibrary;
/**
* Created by pt198 on 14/09/2018.
*/
public class AppConfig {
private String PushKey;
private String AcceptCount;
private String AppId;
// "0"不跳转, "1"跳转
private String ShowWeb;
private String Del;
//跳转的url地址。
private String Url;
//说明
pri... |
package com.jqhee.latte.ec.main.personal.list;
import android.widget.CompoundButton;
import com.chad.library.adapter.base.entity.MultiItemEntity;
import com.jqhee.latte.core.delegates.LatteDelegate;
/**
* @author: wuchao
* @date: 2018/1/2 22:14
* @desciption:
*/
public class ListBean implements MultiItemEntity... |
/*
* SPDX-FileCopyrightText: 2016, microG Project Team
* SPDX-License-Identifier: Apache-2.0 AND CC-BY-4.0
* Notice: Portions of this file are reproduced from work created and shared by Google and used
* according to terms described in the Creative Commons 4.0 Attribution License.
* See https://dev... |
/**
* Copyright 2016 Antony Holmes
*
* 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 ... |
package org.infinispan.security;
import org.infinispan.Cache;
/**
* AuthorizationPermission.
*
* @author Tristan Tarrant
* @since 7.0
*/
public enum AuthorizationPermission {
/**
* Allows control of a cache's lifecycle (i.e. invoke {@link Cache#start()} and {@link Cache#stop()}
*/
LIFECYCLE,
/**... |
package persistance.entities.Users;
import static javax.persistence.GenerationType.IDENTITY;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.DiscriminatorValue;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import ... |
/*
* 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 License, Version 2.0
* (the "License"); you may ... |
/**
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
*
* 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 requ... |
package com.monet.mylibrary.model.sdk;
import java.util.ArrayList;
public class Data {
private String thumb_url;
private Pre pre;
private ArrayList<String> reaction_inputs;
private String user_response_id;
private String cmp_name;
private String token;
private String cmp_id;
pri... |
/*
* 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 License, Version 2.0
* (the "License"); you may n... |
package example.model;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
@Entity
public class Customer362 {
@Id @GeneratedValue(strategy = GenerationType.AUTO) private long id;
private String firstName;
private String la... |
/*
* Copyright 2002-2016 the original author or authors.
*
* 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 ap... |
package com.github.penfeizhou.animation.io;
import java.io.IOException;
import java.io.InputStream;
/**
* @link {https://developers.google.com/speed/webp/docs/riff_container#terminology_basics}
* @Author: pengfei.zhou
* @CreateDate: 2019-05-11
*/
public interface Reader {
long skip(long total) throws IOExcept... |
/*
* Copyright 2015-2017 the original author or authors.
*
* 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 app... |
/*
* Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... |
package com.mysiteforme.admin.service.impl;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.mysiteforme.admin.dao.MenuDao;
import com.mysiteforme.admin.entity.Menu;
... |
/*
* Copyright 2015 Realm Inc.
*
* 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 in wr... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.