Uses of Interface
atg.svc.repository.beans.SolutionField

Packages that use SolutionField
atg.svc.repository.beans   
atg.svc.repository.beans.methods   
atg.svc.repository.service   
 

Uses of SolutionField in atg.svc.repository.beans
 

Methods in atg.svc.repository.beans that return SolutionField
 SolutionField SolutionFieldHome.create()
          Returns a new instance.
 SolutionField SolutionFieldHome.create(java.lang.String pId)
          Returns a new instance with the repository id set to the given id.
 SolutionField SolutionFieldHome.findByPrimaryKey(java.lang.String primaryKey)
          Returns the instance with the given primary key, throws ObjectNotFoundException if the instance is not found.
 SolutionField SolutionFieldHome.wrapRepositoryItem(atg.repository.RepositoryItem pRepositoryItem)
           
 

Methods in atg.svc.repository.beans with parameters of type SolutionField
 void SolutionField.copyTo(SolutionField destination)
          Copies the property values of this instance to another instance of the same data type.
 

Uses of SolutionField in atg.svc.repository.beans.methods
 

Methods in atg.svc.repository.beans.methods that return types with arguments of type SolutionField
 java.util.Map<java.lang.String,SolutionField> SolutionMethods.getAllFields(Solution pSolution)
          Gets a Map of SolutionField keyed on field name.
 

Methods in atg.svc.repository.beans.methods with parameters of type SolutionField
 SolutionFieldValue SolutionFieldMethods.createSolutionFieldValue(SolutionField pField)
          Creates a SolutionFieldValue for the given SolutionField.
 java.lang.String SolutionFieldMethods.getDisplayName(SolutionField pField)
          Gets the display name for the field.
 java.util.List SolutionFieldMethods.getExternallyVisibleFieldValues(SolutionField pSolutionField)
          Gets the list of values that are visible to everyone external.
 boolean SolutionFieldMethods.getIsContent(SolutionField pField)
          Returns true if this field is a Content field, false if this field is a Property field.
 boolean SolutionFieldMethods.getIsEditable(SolutionField pField)
          Returns true if this field is editable.
 boolean SolutionFieldMethods.getIsExternallyVisibleToEveryone(SolutionField pField)
          Returns true if this field is always externally visible.
 boolean SolutionFieldMethods.getIsExternallyVisibleToSegment(java.lang.String pSegment, SolutionField pField)
          Returns true if this field is externally visible to the given segment.
 boolean SolutionFieldMethods.getIsVisible(SolutionField pField)
          Returns true if this field is visible.
 java.lang.String SolutionFieldMethods.getName(SolutionField pField)
          Gets the name of the field.
 java.lang.Object SolutionFieldMethods.getValue(SolutionField pField)
          Gets the value of the field.
 void SolutionFieldMethods.setValue(java.lang.Object pValue, SolutionField pField)
          Sets the value of the SolutionField.
 

Uses of SolutionField in atg.svc.repository.service
 

Methods in atg.svc.repository.service that return SolutionField
 SolutionField SolutionService.createSolutionField(atg.svc.repository.beans.SolutionClassFieldDefinition pSolutionClassFieldDefinition, SolutionHomes pHomes)
          Creates a new SolutionField based on the given SolutionClassFieldDefinition.
 

Methods in atg.svc.repository.service that return types with arguments of type SolutionField
 java.util.List<SolutionField> SolutionService.getExternallyVisibleContentFields(Solution pSolution)
          Gets the solution content fields that are visible to everyone external.
 java.util.List<SolutionField> SolutionService.getExternallyVisiblePropertyFields(Solution pSolution)
          Gets the solution property fields that are visible to everyone external.
 java.util.List<SolutionField> SolutionService.getExternallyVisibleStatementFields(Solution pSolution)
          Gets the solution statement fields that are visible to everyone external.
 

Methods in atg.svc.repository.service with parameters of type SolutionField
 SolutionFieldValue SolutionService.createSolutionFieldValue(SolutionField pField)
          Creates a SolutionFieldValue for the given SolutionField.
 SolutionFieldValue SolutionService.getSolutionFieldValueBean(SolutionField pField, SolutionFieldValue pSolutionFieldValue)
          Gets an editable SolutionFieldValue object given the SolutionField and SolutionFieldValue object.
 boolean SolutionService.isFieldEditableForCurrentUser(SolutionField pField)
          Returns true if the given property is editable by the current user.
 void SolutionService.removeSolutionField(SolutionField pField)
          Removes a SolutionField and any associated SolutionFieldValue objects from the repository.
 

Method parameters in atg.svc.repository.service with type arguments of type SolutionField
 void SolutionService.updateCustomFields(Solution pSolution, java.util.Map<java.lang.String,SolutionField> pFields)
          Takes the solution field map and stores it as encoded data on the Solution.encodedFieldData property of the solution.