Tabnine Logo
JobSignalRequest.setId
Code IndexAdd Tabnine to your IDE (free)

How to use
setId
method
in
org.finra.herd.model.api.xml.JobSignalRequest

Best Java code snippets using org.finra.herd.model.api.xml.JobSignalRequest.setId (Showing top 5 results out of 315)

origin: FINRAOS/herd

  /**
   * Validates the job signal request. This method also trims request parameters.
   *
   * @param request the request
   *
   * @throws IllegalArgumentException if any validation errors were found
   */
  private void validateJobSignalRequest(JobSignalRequest request)
  {
    // Validate required elements
    Assert.hasText(request.getId(), "A job id must be specified.");
    Assert.hasText(request.getReceiveTaskId(), "A receive task id must be specified.");

    // Validate that parameter names are there and not duplicate
    parameterHelper.validateParameters(request.getParameters());

    if (request.getS3PropertiesLocation() != null)
    {
      s3PropertiesLocationHelper.validate(request.getS3PropertiesLocation());
    }

    // Remove leading and trailing spaces.
    request.setId(request.getId().trim());
    request.setReceiveTaskId(request.getReceiveTaskId().trim());
  }
}
origin: org.finra.herd/herd-service

  /**
   * Validates the job signal request. This method also trims request parameters.
   *
   * @param request the request
   *
   * @throws IllegalArgumentException if any validation errors were found
   */
  private void validateJobSignalRequest(JobSignalRequest request)
  {
    // Validate required elements
    Assert.hasText(request.getId(), "A job id must be specified.");
    Assert.hasText(request.getReceiveTaskId(), "A receive task id must be specified.");

    // Validate that parameter names are there and not duplicate
    parameterHelper.validateParameters(request.getParameters());

    if (request.getS3PropertiesLocation() != null)
    {
      s3PropertiesLocationHelper.validate(request.getS3PropertiesLocation());
    }

    // Remove leading and trailing spaces.
    request.setId(request.getId().trim());
    request.setReceiveTaskId(request.getReceiveTaskId().trim());
  }
}
origin: FINRAOS/herd

  sourceId = this.getId();
  String copyId = ((String) strategy.copy(LocatorUtils.property(locator, "id", sourceId), sourceId, (this.id!= null)));
  copy.setId(copyId);
} else {
  if (idShouldBeCopiedAndSet == Boolean.FALSE) {
origin: org.finra.herd/herd-model-api

  sourceId = this.getId();
  String copyId = ((String) strategy.copy(LocatorUtils.property(locator, "id", sourceId), sourceId, (this.id!= null)));
  copy.setId(copyId);
} else {
  if (idShouldBeCopiedAndSet == Boolean.FALSE) {
origin: FINRAOS/herd

  sourceId = this.getId();
  String copyId = ((String) strategy.copy(LocatorUtils.property(locator, "id", sourceId), sourceId, (this.id!= null)));
  copy.setId(copyId);
} else {
  if (idShouldBeCopiedAndSet == Boolean.FALSE) {
org.finra.herd.model.api.xmlJobSignalRequestsetId

Javadoc

Sets the value of the id property.

Popular methods of JobSignalRequest

  • <init>
    Fully-initialising value constructor
  • getId
    Gets the value of the id property.
  • getParameters
  • getReceiveTaskId
    Gets the value of the receiveTaskId property.
  • getS3PropertiesLocation
    Gets the value of the s3PropertiesLocation property.
  • setParameters
  • setReceiveTaskId
    Sets the value of the receiveTaskId property.
  • setS3PropertiesLocation
    Sets the value of the s3PropertiesLocation property.
  • append
  • appendFields
  • copyTo
  • createNewInstance
  • copyTo,
  • createNewInstance,
  • equals,
  • hashCode

Popular in Java

  • Reactive rest calls using spring rest template
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • notifyDataSetChanged (ArrayAdapter)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • JButton (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now