Tabnine Logo
LookupTableRowType.asPrismContainerValue
Code IndexAdd Tabnine to your IDE (free)

How to use
asPrismContainerValue
method
in
com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableRowType

Best Java code snippets using com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableRowType.asPrismContainerValue (Showing top 18 results out of 315)

origin: Evolveum/midpoint

@Override
protected PrismContainerValue getValueFrom(LookupTableRowType value) {
  return value.asPrismContainerValue();
}
origin: Evolveum/midpoint

@Override
public boolean equals(Object object) {
  if (!(object instanceof LookupTableRowType)) {
    return false;
  }
  LookupTableRowType other = ((LookupTableRowType) object);
  return asPrismContainerValue().equivalent(other.asPrismContainerValue());
}
origin: Evolveum/midpoint

@XmlSchemaType(name = "dateTime")
@XmlElement(name = "lastChangeTimestamp")
public XMLGregorianCalendar getLastChangeTimestamp() {
  return PrismForJAXBUtil.getPropertyValue(asPrismContainerValue(), F_LAST_CHANGE_TIMESTAMP, XMLGregorianCalendar.class);
}
origin: Evolveum/midpoint

@Override
public int hashCode() {
  return asPrismContainerValue().hashCode();
}
origin: Evolveum/midpoint

@XmlElement(required = true, name = "key")
public String getKey() {
  return PrismForJAXBUtil.getPropertyValue(asPrismContainerValue(), F_KEY, String.class);
}
origin: Evolveum/midpoint

@XmlElement(name = "label")
public com.evolveum.prism.xml.ns._public.types_3.PolyStringType getLabel() {
  return PrismForJAXBUtil.getPropertyValue(asPrismContainerValue(), F_LABEL, com.evolveum.prism.xml.ns._public.types_3.PolyStringType.class);
}
origin: Evolveum/midpoint

@XmlElement(name = "value")
public String getValue() {
  return PrismForJAXBUtil.getPropertyValue(asPrismContainerValue(), F_VALUE, String.class);
}
origin: Evolveum/midpoint

@XmlAttribute(name = "id")
public Long getId() {
  return asPrismContainerValue().getId();
}
origin: Evolveum/midpoint

@Override
public String toString() {
  return asPrismContainerValue().toString();
}
origin: Evolveum/midpoint

public void setLabel(com.evolveum.prism.xml.ns._public.types_3.PolyStringType value) {
  PrismForJAXBUtil.setPropertyValue(asPrismContainerValue(), F_LABEL, value);
}
origin: Evolveum/midpoint

public void setLastChangeTimestamp(XMLGregorianCalendar value) {
  PrismForJAXBUtil.setPropertyValue(asPrismContainerValue(), F_LAST_CHANGE_TIMESTAMP, value);
}
origin: Evolveum/midpoint

public void setId(Long value) {
  asPrismContainerValue().setId(value);
}
origin: Evolveum/midpoint

public void setKey(String value) {
  PrismForJAXBUtil.setPropertyValue(asPrismContainerValue(), F_KEY, value);
}
origin: Evolveum/midpoint

public void setValue(String value) {
  PrismForJAXBUtil.setPropertyValue(asPrismContainerValue(), F_VALUE, value);
}
origin: Evolveum/midpoint

public LookupTableRowType clone() {
  LookupTableRowType object = new LookupTableRowType();
  PrismContainerValue value = asPrismContainerValue().clone();
  object.setupContainerValue(value);
  return object;
}
origin: Evolveum/midpoint

public<X >X end() {
  return ((X)((PrismContainerValue)((PrismContainer) asPrismContainerValue().getParent()).getParent()).asContainerable());
}
origin: Evolveum/midpoint

  public static void copyFromJAXB(LookupTableType jaxb, RLookupTable repo, RepositoryContext repositoryContext,
                  IdGeneratorResult generatorResult) throws DtoTranslationException, SchemaException {
    copyAssignmentHolderInformationFromJAXB(jaxb, repo, repositoryContext, generatorResult);

    repo.setNameCopy(RPolyString.copyFromJAXB(jaxb.getName()));

    List<LookupTableRowType> rows = jaxb.getRow();
    if (!rows.isEmpty()) {
      repo.setRows(new HashSet<>());
      for (LookupTableRowType row : rows) {
        RLookupTableRow rRow = RLookupTableRow.toRepo(repo, row);
        rRow.setTransient(generatorResult.isTransient(row.asPrismContainerValue()));
        repo.getRows().add(rRow);
      }
    }
  }
}
origin: Evolveum/midpoint

LookupTableRowType rowType = row.toJAXB();
delta.setParentPath(ItemPath.EMPTY_PATH);
delta.applyTo(rowType.asPrismContainerValue());
if (!QNameUtil.match(name, LookupTableRowType.F_LAST_CHANGE_TIMESTAMP)) {
com.evolveum.midpoint.xml.ns._public.common.common_3LookupTableRowTypeasPrismContainerValue

Popular methods of LookupTableRowType

    Popular in Java

    • Reactive rest calls using spring rest template
    • startActivity (Activity)
    • compareTo (BigDecimal)
    • runOnUiThread (Activity)
    • Menu (java.awt)
    • EOFException (java.io)
      Thrown when a program encounters the end of a file or stream during an input operation.
    • Path (java.nio.file)
    • Arrays (java.util)
      This class contains various methods for manipulating arrays (such as sorting and searching). This cl
    • Locale (java.util)
      Locale represents a language/country/variant combination. Locales are used to alter the presentatio
    • Vector (java.util)
      Vector is an implementation of List, backed by an array and synchronized. All optional operations in
    • From CI to AI: The AI layer in your organization
    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