Record Class PostmanCollectionV210.Item.Endpoint.Request.Url
java.lang.Object
java.lang.Record
io.camunda.connector.generator.postman.model.PostmanCollectionV210.Item.Endpoint.Request.Url
- Enclosing class:
PostmanCollectionV210.Item.Endpoint.Request
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.host()Returns the value of thehostrecord component.path()Returns the value of thepathrecord component.port()Returns the value of theportrecord component.protocol()Returns the value of theprotocolrecord component.Returns the value of thequeryParamsrecord component.raw()Returns the value of therawrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Url
public Url(String raw, String protocol, List<String> host, List<String> path, String port, List<PostmanCollectionV210.Item.Endpoint.Request.Url.QueryParam> queryParams) Creates an instance of aUrlrecord class.- Parameters:
raw- the value for therawrecord componentprotocol- the value for theprotocolrecord componenthost- the value for thehostrecord componentpath- the value for thepathrecord componentport- the value for theportrecord componentqueryParams- the value for thequeryParamsrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
raw
Returns the value of therawrecord component.- Returns:
- the value of the
rawrecord component
-
protocol
Returns the value of theprotocolrecord component.- Returns:
- the value of the
protocolrecord component
-
host
Returns the value of thehostrecord component.- Returns:
- the value of the
hostrecord component
-
path
Returns the value of thepathrecord component.- Returns:
- the value of the
pathrecord component
-
port
Returns the value of theportrecord component.- Returns:
- the value of the
portrecord component
-
queryParams
Returns the value of thequeryParamsrecord component.- Returns:
- the value of the
queryParamsrecord component
-