lang
stringclasses
10 values
seed
stringlengths
5
2.12k
java
@Test void loadUserWithIdOne() { // given long userId = 1L; String username = "username"; User user = new User().setId(userId).setUsername(username); when(getUserPortMock.getUser(userId)).thenReturn(user); when(getUserPortMock.existsById(userId)).thenReturn(true);
java
this.checkpoint(responseContinuation); } while (HasMoreResults); } } catch (DocumentClientException dce) { int subStatusCode = getSubStatusCode(dce); if ((dce.getStatusCode() == StatusCode.NOTFOUND.Value() &&
java
import java.util.HashMap; /** * @Author halk * @Date 2021/3/3 20:09 */ public class StringTest {
java
package edu.ap.spring.jpa; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; @Repository public interface JokeRepository extends CrudRepository<Joke, String> { }
java
public List<Long> getCommitted() { return committed; } public void setCommitted(List<Long> committed) { this.committed = committed;
java
package org.jeecg.modules.api.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.jeecg.modules.api.entity.OddsLiveModifiedFive; /** * @author Administrator */ public interface OddsLiveModifiedFiveMapper extends BaseMapper<OddsLiveModifiedFive> { }
java
DynamicList expectedList = DynamicList.builder() .value(DynamicListElement.EMPTY) .listItems(List.of( buildListElement(generatedOrders.get(0).getId(), "order 1 - 15 June 2020"), buildListElement(sealedCaseManagementOrders.get(0).getId(),
java
public void get_DebugHtmlBefore(CkString str) { chilkatJNI.CkMht_get_DebugHtmlBefore(swigCPtr, this, CkString.getCPtr(str), str); } public String debugHtmlBefore() { return chilkatJNI.CkMht_debugHtmlBefore(swigCPtr, this); }
java
int numberOfRecord = 1000000; StructureDataset ds = reader.read(path, numberOfRecord); MinMaxProcess process = new MinMaxProcess(POWER_CONSUMPTION.Sub_metering_1); ds.stream().process(process).start(); float[] minmax = process.getMinMaxs()[0]; ByteBuffer tmpBuffer = GLBufferFactory.allocate(ds.getSize() * Float.BYTES); FloatBuffer floatbuffervalues = tmpBuffer.asFloatBuffer();
java
**/ public class ExposeCompleter extends EnumCompleter { public enum Expose { LoadBalancer, NodePort, Route; } public ExposeCompleter() { super(Expose.class); } }
java
private User user; private List<Transaction> userTransactions = new ArrayList<Transaction>(); @Inject private TransactionBeanLocal transactionBean;
java
protected String tipoUnidade; /** * Obtém o valor da propriedade codigoDR. * * @return * possible object is * {@link String } * */ public String getCodigoDR() { return codigoDR; }
java
import org.junit.Assert; import org.junit.Test; import java.util.Arrays; import static com.google.zxing.qrcode.encoder.Encoder.QR_CODE_FIELD_256; /** * @author <NAME> */ public final class ReedSolomonTestCase extends Assert { @Test
java
} @Override public OptionalLong poll(int timeout, TimeUnit timeUnit) { return poll(); } @Override public int size() { return command.size(); } public void offer(String command) { lock.lock(); command.chars().forEach(i -> this.command.add((long) i));
java
public Object getCorrelationId(); public TransactionIsolationLevel getTransactionIsolationLevel(); public boolean isValid(); public boolean isSecure(); // public int getStatus(); // // public String getState();
java
final public static String CHANNEL = "sys:registered:profile"; final private String player; final private PlayerProfile profile; @JsonCreator public SystemPlayerProfileRegisteredEvent( @JsonProperty(PLAYER) String player, @JsonProperty("playerProfile") PlayerProfile profile ) {
java
package net.techreadiness.customer.action.organization; import net.techreadiness.service.common.DataGridItemProvider; import net.techreadiness.service.object.Contact; public interface ContactByOrgItemProvider extends DataGridItemProvider<Contact> {
java
import org.ssio.spi.clientexternal.spiregistry.SsWorkbookFactoryRegistry; import org.ssio.spi.developerexternal.abstractsheet.factory.SsWorkbookFactory; import org.ssio.spi.developerexternal.abstractsheet.model.SsSheet; import org.ssio.spi.developerexternal.abstractsheet.model.SsWorkbook; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class BeansSaver {
java
/** * Does nothing. */ public void acceptMethodReference(char[] methodName, int argCount, int sourcePosition) { // Does nothing } /** * Does nothing. */ public void acceptTypeReference(char[][] typeName, int sourceStart, int sourceEnd) { // Does nothing
java
/** * This Exception is thrown when an attempt is made to set an illegal assertion, * option or value using the {@link UpConversionOptions} API. * <p> * These contain the same underlying {@link UpConversionErrorCode}s as the errors that would * be obtained if setting the same options using the equivalent LaTeX macros. * * @since 1.2.0 * * @author <NAME> */ public final class IllegalUpconversionOptionException extends IllegalArgumentException {
java
* 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 Suma;
java
import com.airhacks.afterburner.views.FXMLView; /** * @author <NAME> * @since 05.03.16 */
java
@Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.disasterMenuSelectDisaster: // Reset of user preferences is done in onResume in DisasterList Activity
java
//import org.springframework.security.core.authority.SimpleGrantedAuthority; import java.util.Set; import java.util.stream.Collectors;
java
package com.android.dx.dex.file; import com.android.dex.util.ExceptionWithContext; import com.android.dx.util.AnnotatedOutput; /** An item in a Dalvik file which is referenced by absolute offset. */ public abstract class OffsettedItem extends Item implements Comparable<OffsettedItem> { /** {@code > 0;} alignment requirement */ private final int alignment; /**
java
import org.media.container.exception.MergeDefinitionException; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.ext.ExceptionMapper; import javax.ws.rs.ext.Provider; @Provider public class MergeSubmitExceptionMapper implements ExceptionMapper<MergeDefinitionException> { //================================================================================================================== // Public methods
java
arc.apply( transform ); PointAssert.assertThat( arc.getOrigin() ).isCloseTo( new Point3D( 0, 2, 0 ) ); assertThat( arc.getStart() ).isCloseTo( 135.0, TOLERANCE ); assertThat( arc.getExtent() ).isCloseTo( 90.0, TOLERANCE ); assertThat( arc.getRotate() ).isCloseTo( 0.0, TOLERANCE ); } @Test
java
Cursor c = db.rawQuery(query, null); if (c != null) { c.moveToFirst(); if (c.getCount() > 0) { list = new ArrayList<TeacherStudentItem>(); while (!c.isAfterLast()) { item = new TeacherStudentItem(); item.setId(c.getString(c.getColumnIndex("id"))); item.setFull_name(c.getString(c.getColumnIndex("full_name"))); item.setActive(c.getString(c.getColumnIndex("active"))); list.add(item); c.moveToNext(); } } }
java
} catch (ServerErrorException e) { e.printStackTrace(); throw e; } catch (WebApplicationException e) {
java
* Copyright (c) 2016 <NAME> * * 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, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is
java
public final String perceptorName; TachometerPosition(String perceptorName) { this.perceptorName = perceptorName; } }
java
Thread t = new Thread(new Thread1()); t.setDaemon(false); t.start(); System.out.println("fim do programa"); } }
java
/** * The <code>CompoundDecl</code> class is an abstract class that represents * both class declarations and component declarations in the program. This class * contains members, which include fields, methods, and a constructor. * * @author <NAME>
java
return; } Map<String, String> map = new HashMap<>(); for (String config : configList) { String[] valueArray = StringUtils.split(config, DiscoveryConstant.EQUALS); String key = valueArray[0].trim(); String value = null; try { value = String.valueOf(valueArray[1].trim()); map.put(key, value);
java
RecordValidProxy recordValidProxy = new RecordValidProxy(); recordValidProxy.write(ipList, Constant.filePath + "/" + name); ProxyRequest.logger.info("********************结束写" + name + "********************"); removePrefix(name); }
java
import java.util.Set; // TODO: create REST client when API ready // @Path("/objects") public class TristarDataService { @Inject private TristarDataSet camerasDataSet; // @GET @Path("/cameras") // @Produces("application/json") public List<TristarObject> getAllCameras() { ImmutableMap<Integer, TristarObject> camerasMap = camerasDataSet.fetchAll(TristarObjectType.CAMERA); return camerasMap.values().asList(); }
java
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.condition.ConditionalOnJndi; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.jndi.JndiLocatorDelegate; import org.springframework.mail.MailSender;
java
public String from; @DatabaseField public String table; @DatabaseField public String where; @DatabaseField public String group; @DatabaseField public String order; @DatabaseField public String values;
java
return mapRangeRounded(outputMin, outputMax, val, inputMin, inputMax); } }
java
implements DatabaseCommand { private static class Options extends SqshOptions { @OptionProperty(
java
case 756: return "Modulation source arbitrary waveform is empty"; case 757: return "Too many modulation source arbitrary waveform points"; case 758:
java
/** * create by:mc on 2018/12/10 10:09 * email: * simple */ public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);
java
String LAST_OPENING_TIME = "last_opening_time"; String OPENING_COUNT = "opening_count"; String PINNED_MESSAGE_COUNT = "pinned_message_count"; } public static final Uri CONTENT_URI = MessengerContentProvider.createContentUri(TABLE);
java
public String getSkyhookMap() { return skyhookMap; } public void setSkyhookMap(String skyhookMap) { this.skyhookMap = skyhookMap; } public String getFullGrid() { return fullGrid;
java
List<String> HatomElement = cache.getHatomElementList(); List<IRule> rules = new ArrayList<IRule>(); for (String element : HatomElement) {
java
*/ public SingletonContext() { beanReferences = new HashMap<>(); } public <T> void add(final Bean<T> bean, final T reference) {
java
private Map<String,String> templateId; private Map<String,String> id; private Map<String,String> code; private Map<String,String> statusCode; private EffectiveTime effectiveTime; private EntryRelationship entryRelationShip;
java
public void clicked(InputEvent event, float x, float y) { game.setScreen(ScreenFactory.create(game, buttonPrototype.target)); } }); if (++index < length) { buttons.add(button) .width(buttonPrototype.width) .height(buttonPrototype.height) .padBottom(10).row(); } else { buttons.add(button) .width(buttonPrototype.width) .height(buttonPrototype.height); }
java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.ibmcloud.contest.phonebook; import java.io.BufferedReader;
java
Builder nextPaymentDate(@NonNull String nextPaymentDate); Builder totalPaid(double totalPaid); Builder nextPayment(double nextPayment); CreditRepaymentInfo build(); } }
java
public static Uri buildNewsUri(long id) { //content://xyz.aungpyaephyo.padc.myanmarattractions/attractions/1 return ContentUris.withAppendedId(CONTENT_URI, id); } }
java
} // map extracted credentials to CredentialItems, see also: org.eclipse.jgit.transport.UsernamePasswordCredentialsProvider for (CredentialItem item : items) { if (item instanceof CredentialItem.Username) { ((CredentialItem.Username) item).setValue(credentialsPair.username); } else if (item instanceof CredentialItem.Password) { ((CredentialItem.Password) item).setValue(credentialsPair.password); } else if (item instanceof CredentialItem.StringType && item.getPromptText().equals("Password: ")) { ((CredentialItem.StringType) item).setValue(new String(credentialsPair.password)); } else {
java
import java.util.*; class AllMissingNumbers { // Numbers from 1 to N public static List<Integer> findNumbers(int[] nums) { int i = 0; while (i < nums.length) { if (nums[i] != nums[nums[i] - 1]) swap(nums, i, nums[i] - 1);
java
res[idx++] = cur; for (int adj : map.get(cur)) { if (visited.add(adj)) { q.offer(adj); } } }
java
package ru.ssk.restvoting.util.exception; public class UserDeleteViolationException extends RuntimeException { public UserDeleteViolationException(String message) { super(message); } }
java
* @param height How many rows the menu should have */ public Menu(final int width, final int height) { this.w = width; this.h = height; this.size = this.w * this.h; this.items = new ArrayList<>(this.size); // take up all of parent by default this.scale.set(1.0f, 1.0f); this.localDisplace.set(0.0f, 0.0f); this.align = Alignment.NORTH_WEST; this.setConsumeTouches(false); this.dirty(); }
java
import java.io.File; import java.io.IOException; import javax.servlet.ServletOutputStream;
java
while ((len = inputStream.read(buf)) != -1) { baos.write(buf, 0, len); } inputStream.close(); // Convert the ByteArrayOutputStream to a string String clientInfo = baos.toString(); // Extract info from json string try { JSONObject json = new JSONObject(clientInfo); JSONArray interfacesArray = json.getJSONArray("interfaces"); // wifi JSONObject jsonWifi = interfacesArray.getJSONObject(2); String wifiMAC = jsonWifi.getString("MAC");
java
package com.zhangjh.api_payment; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.amqp.rabbit.annotation.RabbitHandler; import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.stereotype.Component; @Component public class ApiPaymentRecevier { private Logger logger = LoggerFactory.getLogger(this.getClass());
java
/** * <p> TODO * * @author 哲也 * @since 2021/5/11 */ public interface NoticeService { boolean push(MailPushBo mailPushBo); boolean push(SmsPushBo smsPushBo); }
java
import com.amazonaws.services.simpleemail.AmazonSimpleEmailService; import com.amazonaws.services.simpleemail.AmazonSimpleEmailServiceClient; import com.amazonaws.services.simpleemail.model.SendEmailResult; import com.google.common.collect.ImmutableMap; import io.stardog.email.data.EmailSendResult; import io.stardog.email.data.HandlebarsEmailTemplate; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when;
java
import net.sourceforge.ondex.core.ONDEXConcept; import net.sourceforge.ondex.core.ONDEXGraph; import net.sourceforge.ondex.core.ONDEXGraphMetaData; import net.sourceforge.ondex.core.ONDEXRelation; import net.sourceforge.ondex.core.RelationType; import net.sourceforge.ondex.core.util.BitSetFunctions; import net.sourceforge.ondex.exception.type.AccessDeniedException; import net.sourceforge.ondex.exception.type.NullValueException; /** * This class is the core of the ONDEX backend and contains all Concepts and * Relations as well as additional data like DataSources or ConceptClasses in * the ONDEXGraphMetaData. *
java
import org.junit.Test; import top.imwonder.sdk.bilibili.util.HttpRequestUtil; public class HttpRequestUtilTest { @Test public void doGetTest() throws Exception { try (CloseableHttpResponse res = HttpRequestUtil.doGet("https://www.imwonder.top/jsonTestAjax", null, false)) { Map<String, Object> test = HttpRequestUtil.toResultMap(res); assertEquals(404.0, test.get("code")); assertEquals("您请求的资源未找到!", test.get("msg")); }
java
public RedFloorBlockUDG() { blockTextureLocator = new SimpleBlockTexture(5, 1); } public IBlockTextureLocator getTexture() { return blockTextureLocator; } }
java
void remove(ResourcePath path) { cache.remove(path.getResourceName()); } } public List<ResourceCondition> getSchemaElements(String namespace) { TypedResources typedResources = cache.get(namespace);
java
import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * @author: flyme * @date: 2018/3/7 15:01 * @desc: 实体类父类 */ @Data public abstract class AbstractEntity extends Model implements Serializable { private static final long serialVersionUID = 1L; /**
java
import java.io.InputStream; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.util.Arrays; import java.util.List;
java
return label; } public void setLabel(String label) { this.label = label; } public String getFormat() { return format; } public void setFormat(String format) { this.format = format;
java
protected TBControlTristateCheckBox m_isInheritExprTB; protected TBControlFor_K_Table m_table; public MappingTableEditor(Composite parent, String migLayoutData,
java
@Autowired private ShopChatService shopChatService; @Override
java
* @author NumoonDum * @date 2020/8/8 */ @Component public class LifeCycleBeanFactoryPostProcessor implements BeanFactoryPostProcessor { @Override public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException { BeanDefinition fifeCycleBeanBeanDefinition = beanFactory.getBeanDefinition("lifeCycle");
java
if (_session.getSessionID() != null) sessionId = _session.getSessionID(); user.setMgSessionId(sessionId); site.open(user); String userId = site.getUserForSession(); site.close(); return TestResult.String(userId); } catch (MgException ex)
java
} } }); } public int getSelectedItemIndex() { int itemIndex = -1; itemIndex = listView.getSelectionModel().getSelectedIndex(); return itemIndex; } }
java
public List<String> getEmails() { return emails; } @Override public String toString() { return "MutablePerson_2{" + "firstName='" + firstName + '\'' + ", lastName='" + lastName + '\'' + ", emails=" + emails +
java
*/ package io.enmasse.iot.jdbc.store; public class DuplicateKeyException extends RuntimeException { private static final long serialVersionUID = 1L; public DuplicateKeyException() {} public DuplicateKeyException(final Throwable cause) { super(cause); } }
java
} public Inventory getById(UUID id){ inventoryAuthorizer.authorizeByInventoryId(id); dev.infrastructr.deck.data.entities.Inventory inventory = inventoryRepository.findById(id).orElseThrow(NotFoundException::new); return inventoryMapper.map(inventory); } public Page<Inventory> getByProjectId(Pageable pageable, UUID projectId){ inventoryAuthorizer.authorizeByProjectId(projectId);
java
@net.minecraftforge.fml.common.API(owner="shipwright", provides="ShipAPI", apiVersion="1.0") package io.github.tehstoneman.shipwright.api;
java
import static java.util.Objects.requireNonNull; /** A JSON presentation class for stock updates. */ public class StockUpdate { private final String symbol; private final Double price; public StockUpdate(String symbol, Double price) { this.symbol = requireNonNull(symbol); this.price = requireNonNull(price); } public String getType() {
java
* Annotation for specification of required OrientDB resources */ @java.lang.annotation.Target(value = {java.lang.annotation.ElementType.TYPE, java.lang.annotation.ElementType.METHOD}) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Documented @java.lang.annotation.Repeatable(RequiredOrientResources.class) public @interface RequiredOrientResource { String value(); String specific() default ""; OrientPermission[] permissions() default {OrientPermission.CREATE, OrientPermission.READ, OrientPermission.UPDATE, OrientPermission.DELETE}; String action() default Action.RENDER; }
java
Border border = BorderFactory.createTitledBorder("Input"); input.setBorder(border); JPanel output = new JPanel(); output.setLayout(new GridLayout(2, 2)); Border outputborder = BorderFactory.createTitledBorder("Output"); output.setBorder(outputborder); new ConditionedView(View.MaterialForMachine).where(true, "Operator=?", Types.NVARCHAR, DBService.getUser()).select("[Material],[IsInput]", (rs) -> { while (rs.next()) { String mat = rs.getString("Material"); IntegerField qtyField = new IntegerField(); if (rs.getBoolean("IsInput")) { input.add(new JLabel(mat)); input.add(qtyField);
java
* limitations under the License. * */ package org.waveprotocol.wave.examples.fedone.frontend; import static org.waveprotocol.wave.examples.fedone.common.CommonConstants.INDEX_WAVE_ID; import static org.waveprotocol.wave.model.id.IdConstants.CONVERSATION_ROOT_WAVELET;
java
public int getLayout() { return R.layout.welcome_activity; } @Override public void onComplete(String response) { // TODO Auto-generated method stub
java
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController;
java
public void removeListenerBinder(String key, IBinder iBinder) throws RemoteException { List<IBinder> eventListeners = stringListMap.get(key); if (eventListeners != null) { eventListeners.remove(iBinder); } } @Override
java
public String getSource(); public String getCCLINumber(); public String getReleased(); public String getTransposition(); public String getTempo(); public String getKey(); public String getVariant(); public String getPublisher();
java
package top.zloop.mobile.dojo.module.base.MVP; public class BasePresenter { }
java
@Override public String toString() { if (this.hasContainers.isEmpty()) return super.toString(); else return 0 == this.ids.length ? StringFactory.stepString(this, this.returnClass.getSimpleName().toLowerCase(), this.hasContainers) : StringFactory .stepString(this, this.returnClass.getSimpleName().toLowerCase(), Arrays.toString(this.ids), this.hasContainers); } private <X extends Element> Iterator<X> iteratorList(final Iterator<X> iterator) { final List<X> list = new ArrayList<>();
java
package com.fbs.rabbitears.contracts.feed; import com.google.gson.annotations.SerializedName; /** * Content Serialization Contract */ public class Content { @SerializedName("@type") public String type; @SerializedName("$") public String value;
java
package main.emulator.device; public interface Device { public void tick(int time); }
java
@Override public int next() { throw new UnsupportedOperationException(); } @Override public int size() {
java
* @Description 快速排序 * @Author Kevin * @Date 2020-01-21 15:21 * @Version V1.0 **/ public class QuickSort { public static void main(String[] args) { int[] arr = new int[]{5, 7, 1, 3, 4, 8, 6, 9}; System.out.println(Arrays.toString(arr));
java
package no.nav.foreldrepenger.behandling.steg.iverksettevedtak; public interface AvsluttBehandling { void avsluttBehandling(Long behandlingId); }
java
}); builder1.setNegativeButton( "No", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dialog.cancel(); } }); alert11 = builder1.create();
java
} public List<ContentType> mapTypes(List<TypeCloudResponses.ContentTypeResponseRaw> typesRaw) throws JsonProcessingException { List<ContentType> types = new ArrayList<>(); for(TypeCloudResponses.ContentTypeResponseRaw typeRaw : typesRaw){ types.add(this.mapType(typeRaw)); } return types; } public ContentType mapType(TypeCloudResponses.DeliverySingleTypeResponseRaw singleTypeResponseRaw) throws JsonProcessingException { if (singleTypeResponseRaw == null){
java
package eisbot.abl; public interface LogListener { public void onLogMessage(String domain, String text); }
java
package rna2d.core.representations; import rna2d.core.datastructures.Node; import rna2d.core.datastructures.OrderedRootedTree; import rna2d.core.verification.Verifier; import java.util.ArrayDeque; import java.util.ArrayList;
java
/** * */ package com.lankesh.entity; /** * @author <NAME> * */ public enum Severity { ERROR, WARNING, INFO
java
/** * Created by zhy on 16/3/2. */ public class HeadBuilder extends GetBuilder { @Override public RequestCall build() {
java
* to be used by higher-level classes like JmsTemplate. */ @NonNullApi @NonNullFields package org.springframework.jms.support;
java
List<PurchaseDetailEntity> listDetailByPurchaseId(Long id); }