115 lines
2.6 KiB
Java
115 lines
2.6 KiB
Java
/*
|
|
* Copyright 2016 Red Hat, Inc. and/or its affiliates
|
|
* and other contributors as indicated by the @author tags.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package org.keycloak.scripting;
|
|
|
|
import org.keycloak.models.ScriptModel;
|
|
|
|
/**
|
|
* A {@link ScriptModel} which holds some meta-data.
|
|
*
|
|
* @author <a href="mailto:thomas.darimont@gmail.com">Thomas Darimont</a>
|
|
*/
|
|
public class Script implements ScriptModel {
|
|
|
|
private String id;
|
|
|
|
private String realmId;
|
|
|
|
private String name;
|
|
|
|
private String mimeType;
|
|
|
|
private String code;
|
|
|
|
private String description;
|
|
|
|
public Script(String id, String realmId, String name, String mimeType, String code, String description) {
|
|
|
|
this.id = id;
|
|
this.realmId = realmId;
|
|
this.name = name;
|
|
this.mimeType = mimeType;
|
|
this.code = code;
|
|
this.description = description;
|
|
}
|
|
|
|
@Override
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
@Override
|
|
public String getRealmId() {
|
|
return realmId;
|
|
}
|
|
|
|
public void setRealmId(String realmId) {
|
|
this.realmId = realmId;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
@Override
|
|
public String getMimeType() {
|
|
return mimeType;
|
|
}
|
|
|
|
public void setMimeType(String mimeType) {
|
|
this.mimeType = mimeType;
|
|
}
|
|
|
|
@Override
|
|
public String getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(String code) {
|
|
this.code = code;
|
|
}
|
|
|
|
@Override
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "Script{" +
|
|
"id='" + id + '\'' +
|
|
", realmId='" + realmId + '\'' +
|
|
", name='" + name + '\'' +
|
|
", type='" + mimeType + '\'' +
|
|
", code='" + code + '\'' +
|
|
", description='" + description + '\'' +
|
|
'}';
|
|
}
|
|
}
|