java.lang.Object
org.springframework.cloud.servicebroker.autoconfigure.web.ServiceDefinition

public class ServiceDefinition extends Object
Internal class for marshaling ServiceBrokerProperties configuration properties that describes a service offered by this broker.
Author:
Scott Frederick, Roy Clarkson
See Also:
  • Constructor Details

    • ServiceDefinition

      public ServiceDefinition()
  • Method Details

    • getId

      public String getId()
    • setId

      public void setId(String id)
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getDescription

      public String getDescription()
    • setDescription

      public void setDescription(String description)
    • isBindable

      public Boolean isBindable()
    • setBindable

      public void setBindable(Boolean bindable)
    • isPlanUpdateable

      public Boolean isPlanUpdateable()
    • setPlanUpdateable

      public void setPlanUpdateable(Boolean planUpdateable)
    • isInstancesRetrievable

      public Boolean isInstancesRetrievable()
    • setInstancesRetrievable

      public void setInstancesRetrievable(Boolean instancesRetrievable)
    • isBindingsRetrievable

      public Boolean isBindingsRetrievable()
    • setBindingsRetrievable

      public void setBindingsRetrievable(Boolean bindingsRetrievable)
    • isAllowContextUpdates

      public Boolean isAllowContextUpdates()
    • setAllowContextUpdates

      public void setAllowContextUpdates(Boolean allowContextUpdates)
    • getTags

      public List<String> getTags()
    • getMetadata

      public ServiceMetadata getMetadata()
    • setMetadata

      public void setMetadata(ServiceMetadata metadata)
    • getRequires

      public List<String> getRequires()
    • getDashboardClient

      public DashboardClient getDashboardClient()
    • setDashboardClient

      public void setDashboardClient(DashboardClient dashboardClient)
    • getPlans

      public List<Plan> getPlans()
    • toModel

      public ServiceDefinition toModel()
      Convert this object to its corresponding model.
      Returns:
      a converted ServiceDefinition
      See Also: