text
stringlengths
7
995k
package org.infobip.mobile.messaging; import androidx.annotation.NonNull; import org.infobip.mobile.messaging.util.DateTimeUtil; import java.security.InvalidParameterException; import java.text.NumberFormat; import java.text.ParseException; import java.util.ArrayList; import java.util.Date; import java.util.List; im...
// // ======================================================================== // Copyright (c) 1995-2018 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the ter...
/* ControlFactory.java -- Copyright (C) 2001, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath 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 2, or (at yo...
/** * @Company 全域旅游 * @Title: SimpleComponentTokenServiceImpl.java * @Package org.bana.wechat.mp.component.impl * @author liuwenjie * @date Sep 17, 2020 9:36:49 AM * @version V1.0 */ package org.bana.wechat.mp.component.impl; import java.util.HashMap; import java.util.Map; import org.bana.wechat.common.http....
package net.momodalo.app.vimtouch.addons; import android.content.Context; import java.io.File; import java.io.BufferedReader; import java.io.FileReader; import java.io.FileWriter; public abstract class AddOnImpl implements AddOn { private final String mId; private final int mNameResId; private final String ...
/* * Copyright 2012-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...
package com.ruoyi.demo.controller.queue; import java.util.Comparator; /** * 比较器 注意不允许使用 内部类或匿名类或lambda表达式 会找不到类 * * @author Lion Li * @version 3.6.0 */ public class PriorityDemoComparator implements Comparator<PriorityDemo> { @Override public int compare(PriorityDemo pd1, PriorityDemo pd2) { retu...
/******************************************************************************* * Copyright (c) 2016 ATOS Spain S.A. * 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. * You may obtain a copy of the License at *...
package com.mm.engine.framework.control.aop.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 定义切面顺序 * * @author huangyong * @since 1.0 */ @Target(ElementType.TYPE) @Retention(Retentio...
package io.gomint.inventory.item; import io.gomint.GoMint; /** * @author geNAZt * @version 1.0 * @stability 3 */ public interface ItemCompass extends ItemStack { /** * Create a new item stack with given class and amount * * @param amount which is used for the creation */ static ItemCo...
package com.threatconnect.app.addons.util.config.install; import com.threatconnect.app.addons.util.config.layout.Layout; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; public class Install { private static final String DEFAULT_LIST_DELIMITER = "|"; private Stri...
/* * Copyright 2016 Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags. * * 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...
// Copyright 2015 The Bazel Authors. 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. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by appl...
package org.edmcouncil.spec.ontoviewer.core.model.graph; /** * * @author Michał Daniel (michal.daniel@makolab.com) * @author Patrycja Miazek (patrycja.miazek@makolab.com) */ public class GraphElement { private int id; private String iri; private String label = ""; public GraphElement(int id) { this.i...
// $ANTLR 3.4 package eu.hyvar.mspl.manifest.resource.hymanifest.mopp; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; im...
package application; import java.io.IOException; import javafx.event.EventHandler; import javafx.event.EventType; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; import javafx.geometry.Point2D; import javafx.scene.control.SplitPane; import javafx.scene.input.ClipboardContent; import javafx.scene.input.DataFor...
package com.lee.cache.config; import com.lee.cache.serializer.Serializer; /** * @author l46li */ public class RocksDbConfiguration<K, V> extends Configuration<K, V> { private boolean isCreatedIfMissing = true; private long cacheSize = 16 * 1024 * 1024L; private int writeBufferSize = 4 * 1024 * 1024; ...
/* * Copyright 2016-present Facebook, 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...
package org.postgresql.sql2.operations; import jdk.incubator.sql2.PrimitiveOperation; import jdk.incubator.sql2.Submission; import org.postgresql.sql2.PgSession; import org.postgresql.sql2.PgSubmission; import org.postgresql.sql2.submissions.BaseSubmission; public class PgCatchOperation<S> implements PrimitiveOperati...
package chapter23; import java.util.Scanner; public class GCD1 { public static int gcd(int m, int n) { int gcd = 1; if (m % n == 0) return n; for (int k = n / 2; k >= 1; k--) { if (m % k == 0 && n % k == 0) { gcd = k; break; } } return gcd; } public static void main(String[] args) ...
// Copyright 2015-2020 SWIM.AI 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 ...
/** * BSD 3-Clause License * * Copyright (C) 2018 Steven Atkinson <steven@nowucca.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the...
package net.jell0wed.vix4j.wrappers.impl.workstation.shared; import net.jell0wed.vix4j.connections.AbstractVixConnection; import net.jell0wed.vix4j.exceptions.VixException; import net.jell0wed.vix4j.wrappers.impl.workstation.VMwareWorkstationVixWrapper; import org.apache.commons.lang3.NotImplementedException; /** * ...
/* * Copyright 2010 Red Hat, Inc. and/or its affiliates. * * 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...
/** * Provides the default implementation of the classes which transform the structs from the JavaParser to the Java model elements */ package com.thoughtworks.qdox.builder.impl;
// ============================================================================ // // Copyright (C) 2006-2021 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have receiv...
package org.wso2.developerstudio.eclipse.gmf.esb.diagram.providers; import java.util.ArrayList; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.emf.ecore.EAnnotation; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EcoreFactory; import org.eclipse.emf.transaction.util.TransactionUtil...
/* * 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 ma...
package com.magdybindia.numbercrunch; /** * Created by Bindia Venugopal on 19/03/2016. */ import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; import com.magdybindia.num...
/* * Copyright 2014-2020 Rudy De Busscher (https://www.atbash.be) * * 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 requir...
package com.myqsc.mobile2.platform.JSInterface; import android.webkit.WebView; import com.myqsc.mobile2.login.uti.PersonalDataHelper; import com.myqsc.mobile2.support.database.structure.UserIDStructure; /** * Created by richard on 13-9-8. */ public class JSInterfaceUser { public static void stuid(final String ...
/* * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package goodman.javax.management.openmbean; // java import // import goodman.javax.management.openmb...
// 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.openapi.editor.impl; import com.intellij.ide.RemoteDesktopService; import com.intellij.openapi.Disposable; import com.intellij.openapi.application.Applicati...
package com.acabra.gtechdevalgs.google; import java.util.*; public class NumberOfIslands2 { int M; int N; static final int LEFT = 0; static final int RIGHT = 1; static final int UP = 2; static final int DOWN = 3; public List<Integer> numIslands2(int m, int n, int[][] positions) { ...
package no.bekk.bekkopen.org; import org.junit.jupiter.api.Test; import static no.bekk.bekkopen.common.Checksums.ERROR_INVALID_CHECKSUM; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.containsString; import static org.junit.jupiter.api.Assertions.assertFalse; import static or...
package creational.factory_method.MaterialUI; import creational.factory_method.Button.Button; import creational.factory_method.Button.ElevatedButton; public class ElevatedMaterialUI extends AbstractMaterialUI { public ElevatedMaterialUI(String theme) { super(theme); } // override factory method t...
package com.alipay.api.response; import com.alipay.api.internal.mapping.ApiField; import com.alipay.api.AlipayResponse; /** * ALIPAY API: alipay.user.signcard.existence.query response. * * @author auto create * @since 1.0, 2019-01-24 15:10:01 */ public class AlipayUserSigncardExistenceQueryResponse extends Ali...
package com.thesis.visualizationserverthesis.service.impl; import com.thesis.visualizationserverthesis.model.api.*; import com.thesis.visualizationserverthesis.model.entity.WeekDate; import com.thesis.visualizationserverthesis.repository.WeekDateRepository; import com.thesis.visualizationserverthesis.repository.evolut...
/* * 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 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 ...
import java.util.ArrayList; public class Toadstool extends Plant { public Toadstool(Position position, World world) { super(0, 0, position, 10, 5, "T", world); } @Override public Organism cloned() { return new Toadstool(this.getPosition(), this.getWorld()); } @Override pub...
package edu.citadel.cprl.ast; import edu.citadel.compiler.CodeGenException; import edu.citadel.compiler.ConstraintException; import edu.citadel.compiler.ErrorHandler; import edu.citadel.compiler.Position; import edu.citadel.cprl.ArrayType; import edu.citadel.cprl.ScopeLevel; import edu.citadel.cprl.Type; import java...
package seedu.address.logic.commands; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.Test; ...
package br.com.pipa.studios.scoreuser.domain.dto.response; import lombok.*; import java.io.Serializable; @AllArgsConstructor @NoArgsConstructor @Getter @Setter @Builder @ToString @EqualsAndHashCode public class ScoreUserResponseDTO implements Serializable { private Long userId; private Long points; priva...
/* * Copyright 2000-2016 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...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE15_External_Control_of_System_or_Configuration_Setting__URLConnection_17.java Label Definition File: CWE15_External_Control_of_System_or_Configuration_Setting.label.xml Template File: sources-sink-17.tmpl.java */ /* * @description * CWE: 15 External Control of System or ...
package io.xinlmain.clientservice; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class ClientServiceApplicationTests { @Test publ...
/* * Copyright © 2014 TU Berlin (emma@dima.tu-berlin.de) * * 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...
import java.util.Arrays; public class Problem2 { @FunctionalInterface private interface RowFunction { int apply(int[] arr); } private static int rowDifference(int[] row) { return Arrays.stream(row).max().orElse(0) - Arrays.stream(row).min().orElse(0); } private static int ev...
/** * Copyright (C) 2018 Mustafa Kabaktepe */ package com.mustafa.udacityprojects.bakingapp.model; import android.os.Parcel; import android.os.Parcelable; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; /** * This class represents an ingredient. */ public class Ingr...
package org.ei.drishti.view.contract; import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; import org.ei.drishti.util.DateUtil; import org.joda.time.Days; imp...
package fr.friquerette.gradlews.service.rt; import static fr.friquerette.gradlews.model.Common.CLIENT_ID; import static fr.friquerette.gradlews.model.Common.END_POINT_AUTHORIZATION; import static fr.friquerette.gradlews.model.Common.REDIRECT_URI; import static fr.friquerette.gradlews.model.Common.UTF_8; import java.i...
/******************************************************************************* * Copyright 2019 Jeremie Bresson * * 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.ap...
/* * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. Camunda licenses this file to you under the Apache License, * Version 2.0; y...
package com.lichtenw.android.exoplayer.api; import com.lichtenw.android.exoplayer.model.Video; public class VideosResponse { public Video[] videos; }
package br.com.fatesg.eventos.controllers; import java.io.IOException; import java.util.Date; import java.util.HashMap; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServletResponse; import org.springframework.beans.factory.annotation...
package uk.co.ribot.androidboilerplate.data.local; import android.content.ContentValues; import android.database.Cursor; import java.util.Date; import uk.co.ribot.androidboilerplate.data.model.database.NameBean; import uk.co.ribot.androidboilerplate.data.model.database.ProductBean; import uk.co.ribot.androidboilerpl...
/* * Copyright (c) Facebook, Inc. and its affiliates. * * 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 applic...
package org.firstinspires.ftc.teamcode.Old.CuttingEdge.Autonomous; import com.qualcomm.robotcore.eventloop.opmode.Autonomous; import com.qualcomm.robotcore.eventloop.opmode.Disabled; import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode; import com.qualcomm.robotcore.hardware.DcMotor; import org.firstinspires.f...
/* * The contents of this file are subject to the Mozilla Public * License Version 1.1 (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.mozilla.org/MPL/ * * Software distributed under the License is distributed on an * "...
/* * Copyright 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 applica...
/** * Triangle rasterization with perspective-correct texture mapping */ public class Triangles { public void perspectiveCorrectTriangle(float x1, float y1, float z1, float x2, float y2, float z2, float x3, float y3, float z3, int u1, int v1, int u2, int v2, int u3, int v3, int[] tex, int sidelen) { float iz...
package com.lightrail.params.values; public class GetValueQueryParams { public Boolean showCode; }
/* SPDX-License-Identifier: Apache 2.0 */ /* Copyright Contributors to the ODPi Egeria project. */ package org.odpi.openmetadata.integrationservices.lineage.properties; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.ann...
package com.silent; import java.util.Arrays; import java.util.LinkedList; import java.util.List; /** * Author liutao * Date 2020/6/16 7:48 下午 * Description: * Version: 1.0 **/ public class leetcode_18 { public List<List<Integer>> fourSum(int[] nums, int target) { List<List<Integer>> result = new Li...
/** * */ package com.surveyproject.atozstore.site.security; import java.util.Collection; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.authority.AuthorityUtils; import com.surveyproject.atozstore.entities.Customer; public class AuthenticatedUser extends org.spr...
/** * MIT License * Copyright (c) 2018 yadong.zhang * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, ...
/* * 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 ma...
//: operators/AutoInc.java // Demonstrates the ++ and -- operators. import static net.mindview.util.Print.*; public class AutoInc { public static void main(String[] args) { int i = 1; print("i : " + i); print("++i : " + ++i); // Pre-increment print("i++ : " + i++); // Post-increment print("i : " ...
/* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
/** * Copyright 2021 SPeCS. * * 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 writi...
package com.jfinalshop.util; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import javax.servlet.ServletContext; import org.apache.commons.io.FileUtils; import org.dom4j.Document; import org.dom4j.Element; import org.dom4j.io.SAXReader; ...
package com.linln.component.fileUpload; import com.linln.common.exception.ResultException; import com.linln.common.utils.SpringContextUtil; import com.linln.common.utils.ToolUtil; import com.linln.component.fileUpload.config.properties.UploadProjectProperties; import com.linln.component.fileUpload.enums.UploadResultEn...
/* * 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. */ /** * * @author lesleycheung */ public class Purchase { private final String product; private int amount; private...
package com.davidemortara.reactmovie.feature.home; import android.os.Bundle; import android.support.v17.leanback.widget.ArrayObjectAdapter; import android.support.v17.leanback.widget.HeaderItem; import android.support.v17.leanback.widget.ListRow; import android.support.v17.leanback.widget.ListRowPresenter; import andr...
package org.zalando.nakadi.controller.advice; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.context.request.NativeWebRequest; import org.zalando.nakadi.cont...
/* * Copyright (C) 2016 HaiYang Li * * 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 w...
package org.smartframework.cloud.examples.basic.auth.test.cases.integration.oms; import com.fasterxml.jackson.core.type.TypeReference; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.Test; import org.smartframework.cloud.common.pojo.BasePageResponse; import org.smartframework.cloud.common.pojo.Res...
package net.runelite.mixins; import net.runelite.api.mixins.Inject; import net.runelite.api.mixins.Mixin; import net.runelite.rs.api.RSRenderable; @Mixin(RSRenderable.class) public abstract class RSRenderableMixin implements RSRenderable { @Inject private boolean hidden = false; @Inject public void setHidden(boo...
package de.boereck.matcher.hamcrest; import java.util.function.Predicate; import org.hamcrest.Matcher; public final class HamcrestFunctions { private HamcrestFunctions() { throw new IllegalStateException("Class HamcrestFunctions must not me instantiated"); } static <T> Predicate<T> is(Match...
package runner; import org.junit.runner.RunWith; import cucumber.api.CucumberOptions; import cucumber.api.junit.Cucumber; @RunWith(Cucumber.class) @CucumberOptions( features="classpath:features", glue="steps", tags="@BuyOrder", monochrome=true, dryRun=false, plugin= { "pretty", "html:target/cucumber...
/* * 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) 2001-2004 Caucho Technology, Inc. All rights reserved. * * The Apache Software License, Version 1.1 * * 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 mu...
package com.github.dockerjava.api.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.EqualsAndHashCode; import lombok.ToString; import javax.annotation.CheckForNull; import java.i...
package org.wso2.carbon.throttle.service.dto; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.ArrayList; import java.util.List; import io.swagger.annotations.*; import java.util.Objects; public class BlockConditionsDTO { private List<String> api = new ArrayList<>(); private List<...
package uk.gov.companieshouse.document.generator.accounts.mapping.smallfull.model.ixbrl.profitandloss.profitorlossbeforetax.items; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.google.gson.Gson; import java.util.Objects; @JsonInclude(JsonInclude...
/* * 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...
/* * 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 au.org.noojee.securepay.soapapi; import java.io.Serializable; public class SecurePayResponse implements Serializable { private static final long serialVersionUID = 1L; private int responseCode = -1; private String responseText; private boolean successful = false; private String httpResponseBody; // ...
package me.jin.dsswitch; import me.jin.dsswitch.datasource.PackageDataSource; import me.jin.dsswitch.exception.PackageError; import java.util.HashMap; import java.util.Map; /** * @author jinshilei * @version 0.0.1 * @date 2020/08/20 */ public class PackageDataSourceConfig { private Map<String, PackageDataSo...
/** * 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...
/* * #%L * servo * %% * Copyright (C) 2011 - 2012 Netflix * %% * 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 require...
/* * 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 * dis...
package $ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Primary; import org.springframework.web.cors.CorsConfiguration; import org.springframework.web.cors.UrlBasedCorsConfigurationSource; import org.spring...
package io.github.conanchen.softwareapplication.graphql.model; import java.util.*; import io.github.conanchen.message.graphql.model.*; import io.github.conanchen.person.graphql.model.*; import io.github.conanchen.organization.graphql.model.*; import io.github.conanchen.acl.graphql.model.*; import io.github.conanchen.s...
/* * Copyright 2020 Monotonic 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
package patterns.parser; public class MarkdownTokenFactory { public static MarkdownToken createT( String text ) { return new MarkdownToken(MarkdownTokenType.T, text); } public static MarkdownToken createCRLF() { return new MarkdownToken(MarkdownTokenType.CRLF); } public static Mar...
package eu.ydp.gwtcreatejs.client.handler; public interface CompleteHandler { public void onComplete(); }
package org.broadinstitute.hellbender.utils.variant; import com.google.common.jimfs.Configuration; import com.google.common.jimfs.Jimfs; import htsjdk.samtools.SAMSequenceDictionary; import htsjdk.samtools.SAMSequenceRecord; import htsjdk.samtools.util.FileExtensions; import htsjdk.samtools.util.Locatable; import htsj...
package TestData.PreU.B2C.IE; import java.util.ArrayList; import java.util.List; import Dao.impl.AutoReportImpl; import Dao.inter.AutoReportDao; import TestData.B2CData; import TestData.PropsUtils; public class Data extends B2CData { private List<String> CTO; private List<String> MTM; private List<String> ACC; p...