datai/docs/reference-code/com/sforce/soap/partner/IChildRelationship.java

89 lines
2.4 KiB
Java

package com.sforce.soap.partner;
/**
* This is a generated class for the SObject Enterprise API.
* Do not edit this file, as your changes will be lost.
*/
public interface IChildRelationship {
/**
* element : cascadeDelete of type {http://www.w3.org/2001/XMLSchema}boolean
* java type: boolean
*/
public boolean getCascadeDelete();
public boolean isCascadeDelete();
public void setCascadeDelete(boolean cascadeDelete);
/**
* element : childSObject of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
public java.lang.String getChildSObject();
public void setChildSObject(java.lang.String childSObject);
/**
* element : deprecatedAndHidden of type {http://www.w3.org/2001/XMLSchema}boolean
* java type: boolean
*/
public boolean getDeprecatedAndHidden();
public boolean isDeprecatedAndHidden();
public void setDeprecatedAndHidden(boolean deprecatedAndHidden);
/**
* element : field of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
public java.lang.String getField();
public void setField(java.lang.String field);
/**
* element : junctionIdListNames of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String[]
*/
public java.lang.String[] getJunctionIdListNames();
public void setJunctionIdListNames(java.lang.String[] junctionIdListNames);
/**
* element : junctionReferenceTo of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String[]
*/
public java.lang.String[] getJunctionReferenceTo();
public void setJunctionReferenceTo(java.lang.String[] junctionReferenceTo);
/**
* element : relationshipName of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
public java.lang.String getRelationshipName();
public void setRelationshipName(java.lang.String relationshipName);
/**
* element : restrictedDelete of type {http://www.w3.org/2001/XMLSchema}boolean
* java type: boolean
*/
public boolean getRestrictedDelete();
public boolean isRestrictedDelete();
public void setRestrictedDelete(boolean restrictedDelete);
}