All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bimserver.models.store.OAuthClient Maven / Gradle / Ivy

/**
 * Copyright (C) 2009-2014 BIMserver.org
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */
package org.bimserver.models.store;

import org.bimserver.emf.IdEObject;

/**
 * 
 * A representation of the model object 'OAuth Client'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.store.OAuthClient#getClientId Client Id}
  • *
  • {@link org.bimserver.models.store.OAuthClient#getClientSecret Client Secret}
  • *
  • {@link org.bimserver.models.store.OAuthClient#getExpiresIn Expires In}
  • *
  • {@link org.bimserver.models.store.OAuthClient#getIssuedAt Issued At}
  • *
  • {@link org.bimserver.models.store.OAuthClient#getRegistrationEndpoint Registration Endpoint}
  • *
* * @see org.bimserver.models.store.StorePackage#getOAuthClient() * @model * @extends IdEObject * @generated */ public interface OAuthClient extends IdEObject { /** * Returns the value of the 'Client Id' attribute. * *

* If the meaning of the 'Client Id' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Client Id' attribute. * @see #setClientId(String) * @see org.bimserver.models.store.StorePackage#getOAuthClient_ClientId() * @model * @generated */ String getClientId(); /** * Sets the value of the '{@link org.bimserver.models.store.OAuthClient#getClientId Client Id}' attribute. * * * @param value the new value of the 'Client Id' attribute. * @see #getClientId() * @generated */ void setClientId(String value); /** * Returns the value of the 'Client Secret' attribute. * *

* If the meaning of the 'Client Secret' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Client Secret' attribute. * @see #setClientSecret(String) * @see org.bimserver.models.store.StorePackage#getOAuthClient_ClientSecret() * @model * @generated */ String getClientSecret(); /** * Sets the value of the '{@link org.bimserver.models.store.OAuthClient#getClientSecret Client Secret}' attribute. * * * @param value the new value of the 'Client Secret' attribute. * @see #getClientSecret() * @generated */ void setClientSecret(String value); /** * Returns the value of the 'Expires In' attribute. * *

* If the meaning of the 'Expires In' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Expires In' attribute. * @see #setExpiresIn(long) * @see org.bimserver.models.store.StorePackage#getOAuthClient_ExpiresIn() * @model * @generated */ long getExpiresIn(); /** * Sets the value of the '{@link org.bimserver.models.store.OAuthClient#getExpiresIn Expires In}' attribute. * * * @param value the new value of the 'Expires In' attribute. * @see #getExpiresIn() * @generated */ void setExpiresIn(long value); /** * Returns the value of the 'Issued At' attribute. * *

* If the meaning of the 'Issued At' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Issued At' attribute. * @see #setIssuedAt(String) * @see org.bimserver.models.store.StorePackage#getOAuthClient_IssuedAt() * @model * @generated */ String getIssuedAt(); /** * Sets the value of the '{@link org.bimserver.models.store.OAuthClient#getIssuedAt Issued At}' attribute. * * * @param value the new value of the 'Issued At' attribute. * @see #getIssuedAt() * @generated */ void setIssuedAt(String value); /** * Returns the value of the 'Registration Endpoint' attribute. * *

* If the meaning of the 'Registration Endpoint' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Registration Endpoint' attribute. * @see #setRegistrationEndpoint(String) * @see org.bimserver.models.store.StorePackage#getOAuthClient_RegistrationEndpoint() * @model * @generated */ String getRegistrationEndpoint(); /** * Sets the value of the '{@link org.bimserver.models.store.OAuthClient#getRegistrationEndpoint Registration Endpoint}' attribute. * * * @param value the new value of the 'Registration Endpoint' attribute. * @see #getRegistrationEndpoint() * @generated */ void setRegistrationEndpoint(String value); } // OAuthClient




© 2015 - 2024 Weber Informatics LLC | Privacy Policy