com.afkl.generic.mashery.model.MasherySecurityProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mashery-sdk Show documentation
Show all versions of mashery-sdk Show documentation
SDK built on top of Intel-Mashery's V3 API.
The newest version!
package com.afkl.generic.mashery.model;
public class MasherySecurityProfile {
private MasheryOAuth oauth;
public MasheryOAuth getOauth() {
return oauth;
}
public void setOauth(MasheryOAuth oauth) {
this.oauth = oauth;
}
}