text
stringlengths
7
1.01M
package my.ostrea.controllers; import my.ostrea.Constants; import my.ostrea.exceptions.CanNotFindFileWithSpecifiedName; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframewo...
package com.terapico.utils; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; public class ImageUtil { protected static Map<String, List<String>> SAMPLE_ROOM = new HashMap<>(); protected static String DEFAULT_AVANTAR = "https://doublechain.oss-cn-hangzhou.aliyuncs.com/c...
package no.acntech.project101.company.consumer; import java.net.URI; import org.springframework.boot.web.client.RestTemplateBuilder; import org.springframework.stereotype.Component; import org.springframework.web.client.RestTemplate; import org.springframework.web.util.UriComponentsBuilder; import no.acntech.project...
package com.fc.v2.course.domain; import java.io.Serializable; import java.util.Date; /** * * * @author whw * @email 1992lcg@163.com * @date 2021-06-01 01:02:54 */ public class WbTeacherDO implements Serializable { private static final long serialVersionUID = 1L; // private Integer id; // private Date...
/* * 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 ...
package org.fluentlenium.core.action; import org.openqa.selenium.NoSuchElementException; import org.openqa.selenium.support.ui.Select; import org.fluentlenium.core.domain.FluentList; import org.fluentlenium.core.domain.FluentWebElement; import java.util.function.Consumer; /** * Provides functionality to select val...
package com.chengxiaoxiao.lizhiedu.auth.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.chengxiaoxiao.lizhiedu.auth.entity.RoleInfo; import java.util.List; /** * <p> * Mapper 接口 * </p> * * @author Cheng xiaoxiao * @since 2020-06-01 */ public interface RoleMapper extends BaseMapper<R...
/* * Copyright (c) 2010-2014. Axon Framework * * 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 ...
/* * See the file LICENSE for redistribution information. * * Copyright (c) 2002, 2014 Oracle and/or its affiliates. All rights reserved. * */ package com.sleepycat.je.rep; import com.sleepycat.je.Database; import com.sleepycat.je.OperationFailureException; /** * Thrown when attempting to use a Database handl...
package com.yatatsu.autobundle.example; import android.os.Bundle; import androidx.annotation.NonNull; import java.lang.String; import java.util.Date; public final class ExampleFragmentAutoBundle { @NonNull public static ExampleFragmentAutoBundle.Builder builder(@NonNull String title, @NonNull Date targetDat...
/* * Copyright (c) 2022, Peter Abeles. All Rights Reserved. * * This file is part of BoofCV (http://boofcv.org). * * 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.apac...
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
/* * Copyright 2000-2014 JetBrains s.r.o. * * 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 agre...
package com.atguigu.gulimall.product.service.impl; import com.atguigu.gulimall.common.utils.PageUtils; import com.atguigu.gulimall.common.utils.Query; import com.atguigu.gulimall.product.dao.AttrGroupDao; import com.atguigu.gulimall.product.entity.AttrGroupEntity; import org.springframework.stereotype.Service; import ...
/* Derby - Class com.pivotal.gemfirexd.internal.client.net.NetStatementRequest 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 th...
package org.web3j.protocol.core.filters; import java.io.IOException; import java.math.BigInteger; import java.util.List; import java.util.Optional; import org.web3j.protocol.Web3j; import org.web3j.protocol.core.Request; import org.web3j.protocol.core.methods.response.EthFilter; import org.web3j.protocol.core.methods...
package com.revolsys.record.io.format.json; import java.util.Map; import java.util.TreeMap; public class JsonObjectTree extends TreeMap<String, Object> implements JsonObject { private static final long serialVersionUID = 1L; JsonObjectTree() { super(); } JsonObjectTree(final Map<? extends String, ? ext...
package ch.less.infrastructure.info; import ch.less.infrastructure.xps.conf.PrintSettingsService; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.core.Logger; import org.apache.logging.log4j.core.LoggerContext; import org.apache.logging.log4j.core.appender.RollingFileAppender; import org.sp...
package org.jeecgframework.web.demo.service.test; import java.util.List; import org.jeecgframework.web.demo.entity.test.JeecgOrderCustomEntity; import org.jeecgframework.web.demo.entity.test.JeecgOrderMainEntity; import org.jeecgframework.web.demo.entity.test.JeecgOrderProductEntity; import org.jeecgframework.core.c...
/* * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0 * (the "License"). You may not use this work except in compliance with the License, which is * available at www.apache.org/licenses/LICENSE-2.0 * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDI...
package cn.hutool.core.text.escape; import cn.hutool.core.text.StrBuilder; import cn.hutool.core.text.replacer.StrReplacer; import cn.hutool.core.util.CharUtil; /** * 形如&#39;的反转义器 * * @author looly * */ public class NumericEntityUnescaper extends StrReplacer { @Override protected int rep...
package com.a4_16; /** * Created by HongWeiPC on 2017/5/2. */ public class Animal { public void eat(){ System.out.println("吃"); } public void sleep(){ System.out.println("睡觉"); } } class Rabbit extends Animal{ public void eat(){ super.eat(); System.out.println("吃草...
package com.rarchives.ripme.ripper; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.util.Collections; import java.util.HashMap; import java.util.Map; import com.rarchives.ripme.ui.RipStatusMessage; import com.rarchives...
package com.Shop.Model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Table; /** * Created by Administrator on 2016/3/25 0025. */ @Entity @Table public class Profit { private int id; private int Area_count; //大区比率 privat...
package com.surafel.mvp.ui.movie.Threat; import com.surafel.mvp.R; import com.surafel.mvp.data.DataManager; import com.surafel.mvp.data.db.model.MovieItems; import com.surafel.mvp.ui.base.BasePresenter; import com.surafel.mvp.utils.rx.SchedulerProvider; import java.util.ArrayList; import java.util.List; import javax...
// Copyright 2018 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 in ...
package seedu.address.logic.commands; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import static seedu.address.logic.parser.CliSyntax.PREFIX_ADDRESS; import static seedu.address.logic.parser.CliSyntax.PREFIX_BIRTHDAY; import static seedu.addres...
/* * Copyright (c) 2008-2022 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 agr...
/* * 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) 2016 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...
package ca.uhn.fhir.jpa.dao; import ca.uhn.fhir.context.*; import ca.uhn.fhir.jpa.dao.data.*; import ca.uhn.fhir.jpa.dao.index.IdHelperService; import ca.uhn.fhir.jpa.dao.index.ResourceIndexedSearchParams; import ca.uhn.fhir.jpa.dao.index.SearchParamExtractorService; import ca.uhn.fhir.jpa.entity.*; import ca.uhn.fhir...
package module116packageJava0; import java.lang.Integer; public class Foo158 { Integer int0; Integer int1; Integer int2; public void foo0() { new module116packageJava0.Foo157().foo18(); } public void foo1() { foo0(); } public void foo2() { foo1(); } public void foo3() { foo2(...
// ********************************************************************** // This file was generated by a TAF parser! // TAF version 3.0.0.34 by WSRD Tencent. // Generated from `/usr/local/resin_system.mqq.com/webapps/communication/taf/upload/noahyang/connServiceInvalid.jce' // *****************************************...
package com.njupt.qmj.tomatotodo.Activity; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.GridLayoutManager; import android.support.v7.widget.RecyclerView; import android.support.v7.widget.Toolbar; import android.view.MenuItem; import com.njupt.qmj.tomatoto...
package com.ddogring.auth.controller; import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.Req...
/* * 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 peridot.GUI.font; import java.io.InputStream; /** * * @author Pitágoras Alves */ public final class FontStreame...
//给定一个二维平面,平面上有 n 个点,求最多有多少个点在同一条直线上。 // // 示例 1: // // 输入: [[1,1],[2,2],[3,3]] //输出: 3 //解释: //^ //| //|        o //|     o //|  o   //+-------------> //0  1  2  3 4 // // // 示例 2: // // 输入: [[1,1],[3,2],[5,3],[4,1],[2,3],[1,4]] //输出: 4 //解释: //^ //| //| o //|     o   o //|      o //|  o   o //+---------...
package org.intermine.webservice.server.search; /* * Copyright (C) 2002-2021 FlyMine * * This code may be freely distributed and modified under the * terms of the GNU Lesser General Public Licence. This should * be distributed with the code. See the LICENSE file for more * information or http://www.gnu.org/cop...
package org.talend.jpalo; import java.util.ArrayList; import java.util.Arrays; import java.util.Hashtable; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import org.apache.http.HttpEntity; import org.apache.http.message.BasicNameValuePair; import com.talend.csv.CSVReader; ...
/** * Autogenerated by Thrift Compiler (0.9.2) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package com.xiaomi.infra.galaxy.metrics.thrift; import libthrift091.scheme.IScheme; import libthrift091.scheme.SchemeFactory; import libthrift091.scheme.StandardScheme; import libt...
package com.klinker.android.twitter_l.views.widgets; import android.content.Context; import android.os.Bundle; import android.support.v13.view.inputmethod.EditorInfoCompat; import android.support.v13.view.inputmethod.InputConnectionCompat; import android.support.v13.view.inputmethod.InputContentInfoCompat; import andr...
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 用户详细信息 * * @author auto create * @since 1.0, 2020-11-24 16:37:11 */ public class BuyerInfo extends AlipayObject { private static final long serialVersionUID = 13531539585468596...
package edu.mills.cs180a; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; //import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import org.junit.jupiter.api.Test; import org.juni...
import javax.script.ScriptEngineManager; import javax.script.ScriptEngine; public class Main { public static void main(String[] args) throws Exception { ScriptEngineManager mgr = new ScriptEngineManager(); ScriptEngine engine = mgr.getEngineByName("JavaScript"); String foo = "3+4"; System.out.println(engine.ev...
package com.chequer.axboot.admin.security; import com.chequer.axboot.admin.AXBootSecurityConfig; import com.chequer.axboot.admin.code.GlobalConstants; import com.chequer.axboot.core.api.response.ApiResponse; import com.chequer.axboot.core.code.ApiStatus; import com.chequer.axboot.core.utils.*; import org.springframewo...
package com.afp.mylawyer.repository; import com.afp.mylawyer.domain.PersistentToken; import com.afp.mylawyer.domain.User; import java.time.LocalDate; import org.springframework.data.jpa.repository.JpaRepository; import java.util.List; /** * Spring Data JPA repository for the {@link PersistentToken} entity. */ publ...
/** * Copyright (c) 2012-2019 Nikita Koksharov * <p> * 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 * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by appli...
import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; import static org.junit.jupiter.api.Assertions.*; class PeopleQueueTest { private final AdressValue adress = new Adr...
package org.wickedsource.budgeteer.web.planning; import org.joda.time.LocalDate; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.Arrays; import java.util.List; class DefaultCal...
/* * 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 me.chrisswr1.parroute.util; import java.util.Arrays; /** * defines some utilities to work with arrays * * @version 0.0.1 * @author ChrissW-R1 * @since 0.0.1 */ public class ArrayUtils { /** * private standard constructor, to prevent initialization * * @since 0.0.1 */ privat...
package com.hubspot.dropwizard.guice.objects; import javax.ws.rs.ext.Provider; @Provider public class InjectedProvider { }
package cn.cicoding.service.impl; import cn.cicoding.service.UserService; import cn.cicoding.dao.UserDaoMapper; import cn.cicoding.model.User; import cn.cicoding.model.UserItem; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Servi...
package com.winsun.fruitmix.Fragment; import android.content.Intent; import android.util.Log; import android.view.LayoutInflater; import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.LinearLay...
package software.sailes.monitoring.infrastructure; import software.amazon.awscdk.core.App; import software.amazon.awscdk.core.Environment; import software.amazon.awscdk.core.StackProps; public class InfrastructureApp { public static void main(final String[] args) { App app = new App(); new Infras...
/* * Copyright 2016-2021 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.typemapper.core.fieldMapper; import org.apache.log4j.Logger; public class IntFieldMapper implements FieldMapper { private static final Logger LOG = Logger.getLogger(IntFieldMapper.class); @Override public Object mapField(String string, Class clazz) { if (string == null) { return 0; } try { ...
package io.nuls.kernel.type; import io.nuls.kernel.utils.SerializeUtils; import org.junit.Test; import static org.junit.Assert.assertEquals; /** * @author Niels * @date 2018/5/17 */ public class Int48Test { @Test public void test() { long time = -1L; byte[] bytes = SerializeUtils.uint48ToB...
package com.doopp.gutty.test.dao; import com.doopp.gutty.test.pojo.User; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; @Mapper public interface UserDao { @Select({ "<script>", "...
package ca.wescook.microbes.items; import ca.wescook.microbes.Microbes; import ca.wescook.microbes.creativetabs.ModCreativeTabs; import ca.wescook.microbes.entities.EntityMoldyBread; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.client.resources.I18n; import net.minecraft...
package com.google.api.ads.adwords.jaxws.v201603.o; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * * {@link Attribute} type that contains a list of {@l...
package module1564_internal.a; import javax.annotation.processing.*; import javax.lang.model.*; import javax.management.*; /** * Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut * labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et ju...
/* * 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 2002-2014 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...
/* * Copyright 2016 John Grosh (jagrosh). * * 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...
package com.airbnb.epoxy; import com.google.testing.compile.JavaFileObjects; import org.junit.Test; import java.util.Arrays; import javax.tools.JavaFileObject; import static com.airbnb.epoxy.ProcessorTestUtils.processors; import static com.google.common.truth.Truth.assert_; import static com.google.testing.compile...
package com.mijibox.openfin.jjs; import java.util.concurrent.CompletionStage; import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; public interface OfUtils { static <T> T runSync(CompletionStage<T> future) { try { return future.toCom...
package com.braunster.chatsdk.interfaces; import org.jdeferred.Promise; /** * Created by Erk on 26.07.2016. */ public interface BUploadHandler { public Promise uploadFile(byte[] data, String name, String mimeType); }
package compiler.cstruct; import java.io.File; import java.util.*; /** * User: Javier Isoldi * Date: 4/29/13 * Time: 12:53 PM */ public class Module { // list of modules that must not be considered as part of the project (or the particular system). // This list contain modules that are part of the langua...
/** * This package contains the Application services a Bounded Context’s domain model would require. * <p> * Application services classes serve multiple purposes: * - Act as ports for input interfaces and output repositories * - Commands, Queries, Events, and Saga participants * - Transaction initiation, control,...
/** * @author hjj * @create 2020/8/17 15:47 */ public class Insertion extends Template { public static void sort(Comparable[] a) { int length = a.length; for (int i = 1; i < length; i++) { // 左边始终保持是有序的 // j 代表当前,如果小于j-1就交换 然后在j-- 此时已经交换 // ex:原 a[j]=4 a[j-1]=9...
/** * Copyright 2016 Nikita Koksharov * * 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 agree...
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.codeInspection.deadCode; import com.intellij.ToolExtensionPoints; import com.intellij.analysis.AnalysisScope; import com.intellij.codeInsight.daemon.GroupNam...
/** * 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...
package com.codamasters.gameobjects; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.BodyDef; import com.badlogic.gdx.physics.box2d.Fixture; import com.badlogic.gdx.physics.box2d.FixtureDef; import com.badlogic.gdx.physics.box2d.PolygonShape; import com.badlogic.gdx.physics.box2d.Worl...
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.example.android.camera2basic; public final class R { public static final class anim { public static final int abc_fade_in...
package org.apoorv.ap.cs2020practice; public interface StringChecker { boolean isValid(String string); }
package seedu.address.logic.commands.duties; import static java.util.Objects.requireNonNull; import static seedu.address.logic.parser.CliSyntax.PREFIX_END; import static seedu.address.logic.parser.CliSyntax.PREFIX_ENTRY; import static seedu.address.logic.parser.CliSyntax.PREFIX_START; import seedu.address.logic.comma...
//@@author A0161247J package seedu.task.logic.parser; import static seedu.task.commons.core.Messages.MESSAGE_INVALID_COMMAND_FORMAT; import seedu.task.commons.util.FileUtil; import seedu.task.logic.commands.Command; import seedu.task.logic.commands.IncorrectCommand; import seedu.task.logic.commands.StoreCommand; /**...
package com.duy.algorithm.notify; import android.app.Activity; import android.content.ActivityNotFoundException; import android.content.Context; import android.content.Intent; import android.net.Uri; import com.duy.algorithm.R; import com.kobakei.ratethisapp.RateThisApp; /** * Created by DUy on 13-Jan-17. */ publ...
// Copyright (c) 2001 Per M.A. Bothner // This is free software; for terms and warranty disclaimer see ./COPYING. package gnu.kawa.lispexpr; import gnu.mapping.*; import gnu.text.*; /** Wrapper for user-supplied reader macro procedure. */ public class ReaderMacro extends ReaderMisc { Procedure procedure; publ...
package com.github.disparter.ddnext.monster; import static org.springframework.http.MediaType.APPLICATION_JSON; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import org.junit.Test; import o...
package com.sendev.databasemanager.grammar.contracts; import com.sendev.databasemanager.contracts.TableGrammar; public abstract class DeleteGrammar extends TableGrammar { public DeleteGrammar() { query = "DELETE FROM "; } }
package br.com.evandropires; import lombok.AllArgsConstructor; import lombok.Getter; @Getter @AllArgsConstructor public class NumberResponse { private String inWords; }
package hu.interconnect.hr.module.personaldata.vacations; import static hu.interconnect.util.DateUtils.azonosHonap; import java.util.function.Predicate; import hu.interconnect.hr.backend.api.enumeration.FelhasznaltSzabadnapJelleg; import hu.interconnect.hr.domain.Szabadsag; import hu.interconnect.util.Month; public...
package webf.action; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import webf.service.ServiceFactory; import webf.util.HibernateUtil; public abstract class Action { private HttpServletRequest request; private HttpServletRespon...
package com.dreadblade.lightair.service; import com.dreadblade.lightair.domain.Message; import com.dreadblade.lightair.domain.User; import com.dreadblade.lightair.domain.UserSubscription; import com.dreadblade.lightair.domain.Views; import com.dreadblade.lightair.dto.EventType; import com.dreadblade.lightair.dto.Messa...
package ir.awlrhm.modules.log; import android.content.Context; import android.util.Log; import java.util.List; import ir.awlrhm.modules.log.database.CrashRecord; import ir.awlrhm.modules.log.database.AWLRHMDatabaseHelper; import ir.awlrhm.modules.log.investigation.AppInfoProvider; import ir.awlrhm.modules.log.invest...
/* * 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 org.mockito_inside.argument_mathchers; import org.eclipse.jdt.annotation.Nullable; @FunctionalInterface public interface ArgumentMatcher { boolean matches( @Nullable Object actual ); }
/* * Copyright 2014-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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
/* * Copyright 2018 Netflix, 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 t...
package com.easytoolsoft.easyreport.engine.util; import com.easytoolsoft.easyreport.engine.data.ReportDataSource; import com.easytoolsoft.easyreport.engine.dbpool.DataSourcePoolFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.sql.DataSource; import java.sql.Connection; import java.sql.Re...
package org.ob.api; import org.neo4j.ogm.cypher.ComparisonOperator; import org.neo4j.ogm.cypher.Filter; import org.neo4j.ogm.cypher.Filters; import org.neo4j.ogm.cypher.query.Pagination; import org.neo4j.ogm.session.SessionFactory; import org.ob.data.model.accounts.Account; import org.slf4j.Logger; import org.slf4j.Lo...
package at.fhjoanneum.ippr.processengine.akka.actors.user; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotatio...
/* * Copyright 2013-2018 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 io.katharsis.repository.annotations; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * <p> * Method annotated with this annotation will be used to prov...
/* * Copyright (C) 2008-2010 Wayne Meissner * * This file is part of the JNR 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....
package com.mall.order.add.service.impl; import com.alibaba.fastjson.JSONObject; import com.fasterxml.jackson.databind.ObjectMapper; import com.mall.common.pojo.CartItem; import com.mall.common.pojo.Order; import com.mall.common.pojo.OrderItem; import com.mall.order.add.dao.OrderAddDAO; import com.mall.order.add.servi...
package pabix.chickens.una; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class SearchView extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_search...