Class Registration


  • public class Registration
    extends java.lang.Object
    General parameters to register for a capability.
    • Constructor Summary

      Constructors 
      Constructor Description
      Registration()  
      Registration​(java.lang.String id, java.lang.String method)  
      Registration​(java.lang.String id, java.lang.String method, java.lang.Object registerOptions)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.String getId()
      The id used to register the request.
      java.lang.String getMethod()
      The method / capability to register for.
      java.lang.Object getRegisterOptions()
      Options necessary for the registration.
      int hashCode()  
      void setId​(java.lang.String id)
      The id used to register the request.
      void setMethod​(java.lang.String method)
      The method / capability to register for.
      void setRegisterOptions​(java.lang.Object registerOptions)
      Options necessary for the registration.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Registration

        public Registration()
      • Registration

        public Registration​(java.lang.String id,
                            java.lang.String method)
      • Registration

        public Registration​(java.lang.String id,
                            java.lang.String method,
                            java.lang.Object registerOptions)
    • Method Detail

      • getId

        public java.lang.String getId()
        The id used to register the request. The id can be used to deregister the request again.
      • setId

        public void setId​(java.lang.String id)
        The id used to register the request. The id can be used to deregister the request again.
      • getMethod

        public java.lang.String getMethod()
        The method / capability to register for.
      • setMethod

        public void setMethod​(java.lang.String method)
        The method / capability to register for.
      • getRegisterOptions

        public java.lang.Object getRegisterOptions()
        Options necessary for the registration.
      • setRegisterOptions

        public void setRegisterOptions​(java.lang.Object registerOptions)
        Options necessary for the registration.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object