Tabnine Logo
StorageUnitDownloadCredential
Code IndexAdd Tabnine to your IDE (free)

How to use
StorageUnitDownloadCredential
in
org.finra.herd.model.api.xml

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

origin: org.finra.herd/herd-model-api

/**
 * Create an instance of {@link StorageUnitDownloadCredential }
 * 
 */
public StorageUnitDownloadCredential createStorageUnitDownloadCredential() {
  return new StorageUnitDownloadCredential();
}
origin: org.finra.herd/herd-model-api

public String toString() {
  final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
  final StringBuilder buffer = new StringBuilder();
  append(null, buffer, strategy);
  return buffer.toString();
}
origin: org.finra.herd/herd-model-api

public Object clone() {
  return copyTo(createNewInstance());
}
origin: org.finra.herd/herd-model-api

public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
  {
    AwsCredential theAwsCredential;
    theAwsCredential = this.getAwsCredential();
    strategy.appendField(locator, this, "awsCredential", buffer, theAwsCredential, (this.awsCredential!= null));
  }
  return buffer;
}
origin: FINRAOS/herd

public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
  final Object draftCopy = ((target == null)?createNewInstance():target);
  if (draftCopy instanceof StorageUnitDownloadCredential) {
    final StorageUnitDownloadCredential copy = ((StorageUnitDownloadCredential) draftCopy);
    {
      Boolean awsCredentialShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.awsCredential!= null));
      if (awsCredentialShouldBeCopiedAndSet == Boolean.TRUE) {
        AwsCredential sourceAwsCredential;
        sourceAwsCredential = this.getAwsCredential();
        AwsCredential copyAwsCredential = ((AwsCredential) strategy.copy(LocatorUtils.property(locator, "awsCredential", sourceAwsCredential), sourceAwsCredential, (this.awsCredential!= null)));
        copy.setAwsCredential(copyAwsCredential);
      } else {
        if (awsCredentialShouldBeCopiedAndSet == Boolean.FALSE) {
          copy.awsCredential = null;
        }
      }
    }
  }
  return draftCopy;
}
origin: FINRAOS/herd

@NamespacePermission(fields = "#businessObjectDataKey?.namespace", permissions = NamespacePermissionEnum.READ)
@Override
public StorageUnitDownloadCredential getStorageUnitDownloadCredential(BusinessObjectDataKey businessObjectDataKey, String storageName)
{
  StorageUnitDownloadCredential businessObjectDataDownloadCredential = new StorageUnitDownloadCredential();
  businessObjectDataDownloadCredential.setAwsCredential(getBusinessObjectDataS3Credential(businessObjectDataKey, null, storageName, false));
  return businessObjectDataDownloadCredential;
}
origin: FINRAOS/herd

public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
  strategy.appendStart(locator, this, buffer);
  appendFields(locator, buffer, strategy);
  strategy.appendEnd(locator, this, buffer);
  return buffer;
}
origin: org.finra.herd/herd-model-api

public boolean equals(Object object) {
  final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
  return equals(null, null, object, strategy);
}
origin: org.finra.herd/herd-model-api

public int hashCode() {
  final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE;
  return this.hashCode(null, strategy);
}
origin: FINRAOS/herd

public Object copyTo(Object target) {
  final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
  return copyTo(null, target, strategy);
}
origin: FINRAOS/herd

public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
  {
    AwsCredential theAwsCredential;
    theAwsCredential = this.getAwsCredential();
    strategy.appendField(locator, this, "awsCredential", buffer, theAwsCredential, (this.awsCredential!= null));
  }
  return buffer;
}
origin: org.finra.herd/herd-model-api

public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
  final Object draftCopy = ((target == null)?createNewInstance():target);
  if (draftCopy instanceof StorageUnitDownloadCredential) {
    final StorageUnitDownloadCredential copy = ((StorageUnitDownloadCredential) draftCopy);
    {
      Boolean awsCredentialShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.awsCredential!= null));
      if (awsCredentialShouldBeCopiedAndSet == Boolean.TRUE) {
        AwsCredential sourceAwsCredential;
        sourceAwsCredential = this.getAwsCredential();
        AwsCredential copyAwsCredential = ((AwsCredential) strategy.copy(LocatorUtils.property(locator, "awsCredential", sourceAwsCredential), sourceAwsCredential, (this.awsCredential!= null)));
        copy.setAwsCredential(copyAwsCredential);
      } else {
        if (awsCredentialShouldBeCopiedAndSet == Boolean.FALSE) {
          copy.awsCredential = null;
        }
      }
    }
  }
  return draftCopy;
}
origin: org.finra.herd/herd-service

@NamespacePermission(fields = "#businessObjectDataKey?.namespace", permissions = NamespacePermissionEnum.READ)
@Override
public StorageUnitDownloadCredential getStorageUnitDownloadCredential(BusinessObjectDataKey businessObjectDataKey, String storageName)
{
  StorageUnitDownloadCredential businessObjectDataDownloadCredential = new StorageUnitDownloadCredential();
  businessObjectDataDownloadCredential.setAwsCredential(getBusinessObjectDataS3Credential(businessObjectDataKey, null, storageName, false));
  return businessObjectDataDownloadCredential;
}
origin: org.finra.herd/herd-model-api

public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
  strategy.appendStart(locator, this, buffer);
  appendFields(locator, buffer, strategy);
  strategy.appendEnd(locator, this, buffer);
  return buffer;
}
origin: FINRAOS/herd

public boolean equals(Object object) {
  final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
  return equals(null, null, object, strategy);
}
origin: FINRAOS/herd

public int hashCode() {
  final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE;
  return this.hashCode(null, strategy);
}
origin: FINRAOS/herd

public Object copyTo(Object target) {
  final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
  return copyTo(null, target, strategy);
}
origin: FINRAOS/herd

public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
  {
    AwsCredential theAwsCredential;
    theAwsCredential = this.getAwsCredential();
    strategy.appendField(locator, this, "awsCredential", buffer, theAwsCredential, (this.awsCredential!= null));
  }
  return buffer;
}
origin: FINRAOS/herd

public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
  final Object draftCopy = ((target == null)?createNewInstance():target);
  if (draftCopy instanceof StorageUnitDownloadCredential) {
    final StorageUnitDownloadCredential copy = ((StorageUnitDownloadCredential) draftCopy);
    {
      Boolean awsCredentialShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.awsCredential!= null));
      if (awsCredentialShouldBeCopiedAndSet == Boolean.TRUE) {
        AwsCredential sourceAwsCredential;
        sourceAwsCredential = this.getAwsCredential();
        AwsCredential copyAwsCredential = ((AwsCredential) strategy.copy(LocatorUtils.property(locator, "awsCredential", sourceAwsCredential), sourceAwsCredential, (this.awsCredential!= null)));
        copy.setAwsCredential(copyAwsCredential);
      } else {
        if (awsCredentialShouldBeCopiedAndSet == Boolean.FALSE) {
          copy.awsCredential = null;
        }
      }
    }
  }
  return draftCopy;
}
origin: FINRAOS/herd

/**
 * Create an instance of {@link StorageUnitDownloadCredential }
 * 
 */
public StorageUnitDownloadCredential createStorageUnitDownloadCredential() {
  return new StorageUnitDownloadCredential();
}
org.finra.herd.model.api.xmlStorageUnitDownloadCredential

Javadoc

Java class for storageUnitDownloadCredential complex type.

The following schema fragment specifies the expected content contained within this class.

 
<complexType name="storageUnitDownloadCredential"> 
<complexContent> 
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 
<sequence> 
<element name="awsCredential" type="{}awsCredential"/> 
</sequence> 
</restriction> 
</complexContent> 
</complexType> 

Most used methods

  • <init>
    Fully-initialising value constructor
  • getAwsCredential
    Gets the value of the awsCredential property.
  • setAwsCredential
    Sets the value of the awsCredential property.
  • append
  • appendFields
  • copyTo
  • createNewInstance
  • equals
  • hashCode

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • putExtra (Intent)
  • setContentView (Activity)
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • JList (javax.swing)
  • JOptionPane (javax.swing)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Github Copilot alternatives
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