org.opencrx.kernel.home1.cci2.OAuthAccount Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.home1.cci2;
/**
* Abstract class {@code OAuthAccount}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:35.512885728Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface OAuthAccount
{
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code accessToken}.
* @return The possibly null value for attribute {@code accessToken}.
*/
public java.lang.String getAccessToken(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code accessToken}.
* @param accessToken The possibly null new value for attribute {@code accessToken}.
*/
public void setAccessToken(
java.lang.String accessToken
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code accessTokenSecret}.
* @return The possibly null value for attribute {@code accessTokenSecret}.
*/
public java.lang.String getAccessTokenSecret(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code accessTokenSecret}.
* @param accessTokenSecret The possibly null new value for attribute {@code accessTokenSecret}.
*/
public void setAccessTokenSecret(
java.lang.String accessTokenSecret
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code consumerKey}.
* @return The possibly null value for attribute {@code consumerKey}.
*/
public java.lang.String getConsumerKey(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code consumerKey}.
* @param consumerKey The possibly null new value for attribute {@code consumerKey}.
*/
public void setConsumerKey(
java.lang.String consumerKey
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code consumerSecret}.
* @return The possibly null value for attribute {@code consumerSecret}.
*/
public java.lang.String getConsumerSecret(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code consumerSecret}.
* @param consumerSecret The possibly null new value for attribute {@code consumerSecret}.
*/
public void setConsumerSecret(
java.lang.String consumerSecret
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}